Constant name consistency.
This commit is contained in:
@@ -31,13 +31,13 @@ public final class Constants {
|
||||
public static final String WRENCH_ITEM_NAME = "wrench";
|
||||
|
||||
public static final String BUS_INTERFACE_ITEM_NAME = "bus_interface";
|
||||
public static final String NETWORK_CABLE_NAME = "network_cable";
|
||||
public static final String NETWORK_CABLE_ITEM_NAME = "network_cable";
|
||||
|
||||
public static final String FLASH_MEMORY_ITEM_NAME = "flash_memory";
|
||||
public static final String MEMORY_ITEM_NAME = "memory";
|
||||
public static final String HARD_DRIVE_ITEM_NAME = "hard_drive";
|
||||
public static final String REDSTONE_INTERFACE_CARD_NAME = "redstone_interface_card";
|
||||
public static final String NETWORK_INTERFACE_CARD_NAME = "network_interface_card";
|
||||
public static final String REDSTONE_INTERFACE_CARD_ITEM_NAME = "redstone_interface_card";
|
||||
public static final String NETWORK_INTERFACE_CARD_ITEM_NAME = "network_interface_card";
|
||||
|
||||
///////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
@@ -29,13 +29,13 @@ public final class Items {
|
||||
public static final RegistryObject<Item> WRENCH_ITEM = register(Constants.WRENCH_ITEM_NAME, WrenchItem::new);
|
||||
|
||||
public static final RegistryObject<Item> BUS_INTERFACE_ITEM = register(Constants.BUS_INTERFACE_ITEM_NAME, BusInterfaceItem::new);
|
||||
public static final RegistryObject<Item> NETWORK_CABLE_ITEM = register(Constants.NETWORK_CABLE_NAME, NetworkCableItem::new);
|
||||
public static final RegistryObject<Item> NETWORK_CABLE_ITEM = register(Constants.NETWORK_CABLE_ITEM_NAME, NetworkCableItem::new);
|
||||
|
||||
public static final RegistryObject<Item> MEMORY_ITEM = register(Constants.MEMORY_ITEM_NAME, MemoryItem::new, new Item.Properties());
|
||||
public static final RegistryObject<Item> HARD_DRIVE_ITEM = register(Constants.HARD_DRIVE_ITEM_NAME, HardDriveItem::new, new Item.Properties());
|
||||
public static final RegistryObject<Item> FLASH_MEMORY_ITEM = register(Constants.FLASH_MEMORY_ITEM_NAME, FlashMemoryItem::new, new Item.Properties());
|
||||
public static final RegistryObject<Item> REDSTONE_INTERFACE_CARD_ITEM = register(Constants.REDSTONE_INTERFACE_CARD_NAME);
|
||||
public static final RegistryObject<Item> NETWORK_INTERFACE_CARD_ITEM = register(Constants.NETWORK_INTERFACE_CARD_NAME);
|
||||
public static final RegistryObject<Item> REDSTONE_INTERFACE_CARD_ITEM = register(Constants.REDSTONE_INTERFACE_CARD_ITEM_NAME);
|
||||
public static final RegistryObject<Item> NETWORK_INTERFACE_CARD_ITEM = register(Constants.NETWORK_INTERFACE_CARD_ITEM_NAME);
|
||||
|
||||
///////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
Reference in New Issue
Block a user