PiTheGuy

Results 14 comments of PiTheGuy

Go into your `build.gradle` and configure it to use parchment mappings. Parchment mappings are a community made set of mapping built on the official mappings. This includes most parameter names....

The methods it's counting that it shouldn't are `Enum.values`, `Enum.valueOf`, `Enum.`, `Record.equals`, and `Record.`. Edit: It's actually only the first 2 parameters of `Enum.`.

Since lambda methods are synthetic and never referenced directly, the decompiler never visits them, and tokens are never created for them during indexing. When it then tries to look up...

Consider this code snippet taken from `SpawnPlacements`: ```java private static void register(EntityType entityType, SpawnPlacementType spawnPlacementType, Types heightmapType, SpawnPlacements.SpawnPredicate predicate) { SpawnPlacements.Data $$4 = DATA_BY_TYPE.put(entityType, new SpawnPlacements.Data(heightmapType, spawnPlacementType, predicate)); if ($$4...

From EnigmaTextTokenCollector: ```java @Override public void visitMethod(TextRange range, boolean declaration, String className, String name, MethodDescriptor descriptor) { super.visitMethod(range, declaration, className, name, descriptor); Token token = this.getToken(range); MethodEntry entry = getMethodEntry(className,...

We are having issues with the backend code that validates incoming pull requests. The team is working to move it to GitHub Actions.

Side note: I have plenty of space. I don't know why it's even truncating it to begin with

I'm using the Minecraft jar with Parchment mappings. After a bit of debugging, this appears to be a race condition where entries are added to the navigator before the project's...

.schematic is a really old format that hasn't been used since Minecraft 1.12. It's been almost entirely replaced by .schem. That isn't to say .schematic support can't or won't happen,...