use of com.latmod.yabba.block.BlockCompoundItemBarrel in project YABBA by LatvianModder.
the class YabbaItems method registerBlocks.
@SubscribeEvent
public static void registerBlocks(RegistryEvent.Register<Block> event) {
event.getRegistry().registerAll(new BlockItemBarrel("item_barrel"), new BlockItemBarrelConnector("item_barrel_connector"), new BlockAntibarrel("antibarrel"), new BlockCompoundItemBarrel("compound_item_barrel"));
GameRegistry.registerTileEntity(TileItemBarrel.class, Yabba.MOD_ID + ":item_barrel");
GameRegistry.registerTileEntity(TileItemBarrelConnector.class, Yabba.MOD_ID + ":item_barrel_connector");
GameRegistry.registerTileEntity(TileAntibarrel.class, Yabba.MOD_ID + ":antibarrel");
GameRegistry.registerTileEntity(TileCompoundItemBarrel.class, Yabba.MOD_ID + ":compound_item_barrel");
}
Aggregations