[Fix] Custom Item Drop for a Sign is created before the Blocks are registered (quiqueck/BetterNether#151)
This commit is contained in:
parent
13cd641ee0
commit
1448ea8467
5 changed files with 46 additions and 12 deletions
|
@ -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()
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue