Wrong chest registry fix
This commit is contained in:
parent
262b249654
commit
30204a2aee
2 changed files with 3 additions and 2 deletions
|
@ -8,7 +8,7 @@ yarn_mappings=6
|
|||
loader_version=0.11.3
|
||||
|
||||
# Mod Properties
|
||||
mod_version = 0.9.8.4-pre
|
||||
mod_version = 0.9.8.5-pre
|
||||
maven_group = ru.betterend
|
||||
archives_base_name = better-end
|
||||
|
||||
|
|
|
@ -16,6 +16,7 @@ import ru.bclib.blocks.BaseBarkBlock;
|
|||
import ru.bclib.blocks.BaseBarrelBlock;
|
||||
import ru.bclib.blocks.BaseBlock;
|
||||
import ru.bclib.blocks.BaseBookshelfBlock;
|
||||
import ru.bclib.blocks.BaseChestBlock;
|
||||
import ru.bclib.blocks.BaseComposterBlock;
|
||||
import ru.bclib.blocks.BaseCraftingTableBlock;
|
||||
import ru.bclib.blocks.BaseDoorBlock;
|
||||
|
@ -90,7 +91,7 @@ public class WoodenMaterial {
|
|||
ladder = EndBlocks.registerBlock(name + "_ladder", new BaseLadderBlock(planks));
|
||||
sign = EndBlocks.registerBlock(name + "_sign", new BaseSignBlock(planks));
|
||||
|
||||
chest = EndBlocks.registerBlock(name + "_chest", new BaseFenceBlock(planks));
|
||||
chest = EndBlocks.registerBlock(name + "_chest", new BaseChestBlock(planks));
|
||||
barrel = EndBlocks.registerBlock(name + "_barrel", new BaseBarrelBlock(planks));
|
||||
shelf = EndBlocks.registerBlock(name + "_bookshelf", new BaseBookshelfBlock(planks));
|
||||
composter = EndBlocks.registerBlock(name + "_composter", new BaseComposterBlock(planks));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue