Skip to content

Commit

Permalink
Fix compilation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
thecatcore committed Apr 29, 2024
1 parent 269de6a commit 1b0e953
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 61 deletions.
61 changes: 0 additions & 61 deletions src/main/java/fr/catcore/fabricatedforge/ForgeModRemapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -250,67 +250,6 @@ public void registerPostVisitors(VisitorInfos visitorInfos) {
);

// Mod specific fixes
// ExtraBiomesXL
visitorInfos.registerMethodInvocation(
"extrabiomes/module/summa/block/BlockCustomTallGrass",
"setBurnProperties",
"",
new VisitorInfos.FullClassMember(
"fr/catcore/fabricatedforge/forged/reflection/ReflectedBlock",
"setBurnProperties",
null
)
);
visitorInfos.registerMethodInvocation(
"extrabiomes/module/summa/block/BlockCustomLog",
"setBurnProperties",
"",
new VisitorInfos.FullClassMember(
"fr/catcore/fabricatedforge/forged/reflection/ReflectedBlock",
"setBurnProperties",
null
)
);
visitorInfos.registerMethodInvocation(
"extrabiomes/module/summa/block/BlockQuarterLog",
"setBurnProperties",
"",
new VisitorInfos.FullClassMember(
"fr/catcore/fabricatedforge/forged/reflection/ReflectedBlock",
"setBurnProperties",
null
)
);
visitorInfos.registerMethodInvocation(
"extrabiomes/module/fabrica/block/BlockCustomWood",
"setBurnProperties",
"",
new VisitorInfos.FullClassMember(
"fr/catcore/fabricatedforge/forged/reflection/ReflectedBlock",
"setBurnProperties",
null
)
);
visitorInfos.registerMethodInvocation(
"extrabiomes/module/fabrica/block/BlockCustomWoodSlab",
"setBurnProperties",
"",
new VisitorInfos.FullClassMember(
"fr/catcore/fabricatedforge/forged/reflection/ReflectedBlock",
"setBurnProperties",
null
)
);
visitorInfos.registerMethodInvocation(
"extrabiomes/module/fabrica/block/BlockWoodStairs",
"setBurnProperties",
"",
new VisitorInfos.FullClassMember(
"fr/catcore/fabricatedforge/forged/reflection/ReflectedBlock",
"setBurnProperties",
null
)
);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ public abstract class ServerWorldMixin extends World implements IServerWorld {

@Shadow public abstract boolean isReady();

@Shadow public ServerChunkProvider chunkCache;

public ServerWorldMixin(SaveHandler saveHandler, String string, Dimension dimension, LevelInfo levelInfo, Profiler profiler) {
super(saveHandler, string, dimension, levelInfo, profiler);
}
Expand Down

0 comments on commit 1b0e953

Please sign in to comment.