Add the insolator #17

Merged
BlakeRain merged 19 commits from BlakeRain/utamacraft:main into main 2023-12-01 18:20:57 +00:00
Showing only changes of commit f193ed90dc - Show all commits

View File

@ -16,15 +16,15 @@ public class ModItems {
public static final RegistryObject<Item> PLAYER_PERIPHERAL = public static final RegistryObject<Item> PLAYER_PERIPHERAL =
ITEMS.register("player_peripheral", PlayerPeripheralItem::new); ITEMS.register("player_peripheral", PlayerPeripheralItem::new);
public static final RegistryObject<Item> TUNGSTEN_INGOT = public static final RegistryObject<Item> TUNGSTEN_INGOT =
ITEMS.register("tungsten_ingot", () -> new Item(new Item.Properties())); ITEMS.register("tungsten_ingot", () -> new Item(new Item.Properties().tab(ModCreativeModeTab.TAB)));
public static final RegistryObject<Item> RAW_TUNGSTEN = public static final RegistryObject<Item> RAW_TUNGSTEN =
ITEMS.register("raw_tungsten", () -> new Item(new Item.Properties())); ITEMS.register("raw_tungsten", () -> new Item(new Item.Properties().tab(ModCreativeModeTab.TAB)));
public static final RegistryObject<Item> FIBER_GLASS = public static final RegistryObject<Item> FIBER_GLASS =
ITEMS.register("fiber_glass", () -> new Item(new Item.Properties())); ITEMS.register("fiber_glass", () -> new Item(new Item.Properties().tab(ModCreativeModeTab.TAB)));
public static final RegistryObject<Item> PCB = public static final RegistryObject<Item> PCB =
ITEMS.register("pcb", () -> new Item(new Item.Properties())); ITEMS.register("pcb", () -> new Item(new Item.Properties().tab(ModCreativeModeTab.TAB)));
public static final RegistryObject<Item> BULB = public static final RegistryObject<Item> BULB =
ITEMS.register("bulb", () -> new Item(new Item.Properties())); ITEMS.register("bulb", () -> new Item(new Item.Properties().tab(ModCreativeModeTab.TAB)));
public static void register(IEventBus eventBus) { public static void register(IEventBus eventBus) {
ITEMS.register(eventBus); ITEMS.register(eventBus);