Skip to content

Commit 52ff02c

Browse files
Remove steel ingot and add new ore items
Removed the steel ingot item and added new ore items.
1 parent 1a6b7dc commit 52ff02c

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/main/java/com/tcm/MineTale/registry/ModItems.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,11 @@ public static void initialize() {
4444
public static final Item ADAMANTITE_INGOT = register("adamantite_ingot", Item::new, new Item.Properties());
4545
public static final Item MITHRIL_INGOT = register("mithril_ingot", Item::new, new Item.Properties());
4646
public static final Item BRONZE_INGOT = register("bronze_ingot", Item::new, new Item.Properties());
47-
public static final Item STEEL_INGOT = register("steel_ingot", Item::new, new Item.Properties());
47+
48+
public static final Item THORIUM_ORE = register("thorium_ore", Item::new, new Item.Properties());
49+
public static final Item COBALT_ORE = register("cobalt_ore", Item::new, new Item.Properties());
50+
public static final Item ADAMANTITE_ORE = register("adamantite_ore", Item::new, new Item.Properties());
51+
public static final Item MITHRIL_ORE = register("mithril_ore", Item::new, new Item.Properties());
4852

4953
// --- MOB DROPS, HIDES & LEATHERS ---
5054
public static final Item LIGHT_HIDE = register("light_hide", Item::new, new Item.Properties());

0 commit comments

Comments
 (0)