[Fix] Custom Item Drop for a Sign is created before the Blocks are registered (quiqueck/BetterNether#151)

This commit is contained in:
Frank 2023-07-08 13:16:35 +02:00
parent 13cd641ee0
commit 1448ea8467
5 changed files with 46 additions and 12 deletions

View file

@ -147,7 +147,7 @@ public class BCLib implements ModInitializer {
);
bockReg.registerBlockOnly(
makeID("test_wall_sign"),
TEST_SIGN.wallSign
TEST_SIGN.getWallSignBlock()
);
bockReg.register(
makeID("test_hanging_sign"),
@ -155,7 +155,7 @@ public class BCLib implements ModInitializer {
);
bockReg.registerBlockOnly(
makeID("test_wall_hanging_sign"),
TEST_HANGING_SIGN.wallSign
TEST_HANGING_SIGN.getWallSignBlock()
);
}