Updated MetalChests compatibility from v5.8.1 and above

This commit is contained in:
Unknown 2019-08-10 10:06:21 +02:00
parent c1991d7d31
commit 71d764a13c
5 changed files with 2 additions and 1 deletions

Binary file not shown.

Binary file not shown.

View file

@ -210,6 +210,7 @@ import javax.annotation.Nullable;
+ "after:gregtech;"
+ "after:ic2;"
+ "after:icbmclassic;"
+ "after:metalchests@[v5.8.1,);"
+ "after:opencomputers;",
certificateFingerprint = "f7be6b40743c6a8205df86c5e57547d578605d8a"
)

View file

@ -23,7 +23,7 @@ public class CompatMetalChests implements IBlockTransformer {
public static void register() {
try {
classBlockMetalChest = Class.forName("T145.metalchests.blocks.BlockMetalChest");
classBlockMetalChest = Class.forName("t145.metalchests.blocks.BlockMetalChest");
WarpDriveConfig.registerBlockTransformer("MetalChests", new CompatMetalChests());
} catch(final ClassNotFoundException exception) {