[Fix] Blocks were registered after Items, which could cause issues with lootTables (quiqueck/BetterNether#151)
This commit is contained in:
parent
ef8e1fa2fb
commit
b189d8013e
1 changed files with 2 additions and 1 deletions
|
@ -34,6 +34,8 @@ public class BlockRegistry extends BaseRegistry<Block> {
|
||||||
BCLib.LOGGER.warning("Block " + id + " disabled");
|
BCLib.LOGGER.warning("Block " + id + " disabled");
|
||||||
return block;
|
return block;
|
||||||
}
|
}
|
||||||
|
block = Registry.register(Registry.BLOCK, id, block);
|
||||||
|
|
||||||
BlockItem item = null;
|
BlockItem item = null;
|
||||||
if (block instanceof CustomItemProvider) {
|
if (block instanceof CustomItemProvider) {
|
||||||
item = ((CustomItemProvider) block).getCustomItem(id, makeItemSettings());
|
item = ((CustomItemProvider) block).getCustomItem(id, makeItemSettings());
|
||||||
|
@ -49,7 +51,6 @@ public class BlockRegistry extends BaseRegistry<Block> {
|
||||||
FlammableBlockRegistry.getDefaultInstance().add(block, 5, 5);
|
FlammableBlockRegistry.getDefaultInstance().add(block, 5, 5);
|
||||||
}
|
}
|
||||||
|
|
||||||
block = Registry.register(Registry.BLOCK, id, block);
|
|
||||||
getModBlocks(id.getNamespace()).add(block);
|
getModBlocks(id.getNamespace()).add(block);
|
||||||
|
|
||||||
if (block instanceof BaseLeavesBlock) {
|
if (block instanceof BaseLeavesBlock) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue