Skip to content

Commit 2fee571

Browse files
committed
make storage panel experimental
1 parent a3e4638 commit 2fee571

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/main/java/com/zerofall/ezstorage/init/EZBlocks.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,10 @@ public static void register() {
5454
GameRegistry.registerBlock(input_port, input_port.getUnlocalizedName().substring(5));
5555
GameRegistry.registerTileEntity(TileEntityInventoryProxy.class, "TileEntityInputPort");
5656
GameRegistry.registerBlock(crafting_box, crafting_box.getUnlocalizedName().substring(5));
57-
GameRegistry.registerBlock(storage_panel, storage_panel.getUnlocalizedName().substring(5));
5857
if (EZConfiguration.experimentalContent) {
58+
// This blocks add new options to the game not intended to be included into this mod.
59+
// Maybe will move them to another mod, an add-on.
60+
GameRegistry.registerBlock(storage_panel, storage_panel.getUnlocalizedName().substring(5));
5961
GameRegistry.registerBlock(storage_cable, storage_cable.getUnlocalizedName().substring(5));
6062
}
6163
}

0 commit comments

Comments
 (0)