diff --git a/1.11/To-Dos b/1.11/To-Dos index bfbf2411..2cdd8c51 100644 --- a/1.11/To-Dos +++ b/1.11/To-Dos @@ -2,9 +2,9 @@ To-Dos *** Bugs *** - [ ] Duplication Bug for Tool Repair -- [ ] Can't remove cool ingots from Forge *** Priority *** +- [ ] Move Ingot break into chunks logic out of the block and into the ForgeHammer - [ ] Make an Iron Anvil - [ ] Make Clean Iron Recipes and Tools - [ ] Make Clean Ore Recipe diff --git a/1.11/src/main/java/nmd/primal/forgecraft/init/ModItems.java b/1.11/src/main/java/nmd/primal/forgecraft/init/ModItems.java index aaf21c4f..173458dd 100644 --- a/1.11/src/main/java/nmd/primal/forgecraft/init/ModItems.java +++ b/1.11/src/main/java/nmd/primal/forgecraft/init/ModItems.java @@ -67,21 +67,31 @@ public class ModItems { softcrucible = new ItemSoftCrucible(); stonetongs = new ItemStoneTongs("stonetongs"); forgehammer = new ForgeHammer("forgehammer"); + matchlockmusket = new Musket("matchlock_musket"); + /********** + TOOL PARTS + **********/ pickaxehead = new ToolPart("ironpickaxehead", ModMaterials.TOOL_WROUGHT_IRON); ironaxehead = new ToolPart("ironaxehead", ModMaterials.TOOL_WROUGHT_IRON); ironshovelhead = new ToolPart("ironshovelhead", ModMaterials.TOOL_WROUGHT_IRON); ironhoehead = new ToolPart("ironhoehead", ModMaterials.TOOL_WROUGHT_IRON); - + /********** + TOOLS + **********/ ironpickaxe = new CustomPickaxe("ironpickaxe", ModMaterials.TOOL_WROUGHT_IRON); ironaxe = new CustomAxe("ironaxe", ModMaterials.TOOL_WROUGHT_IRON); ironshovel = new CustomShovel("ironshovel", ModMaterials.TOOL_WROUGHT_IRON); ironhoe = new CustomHoe("ironhoe", ModMaterials.TOOL_WROUGHT_IRON); - + /********** + WEAPONS + **********/ ironsword = new CustomSword("ironsword", ModMaterials.TOOL_WROUGHT_IRON); - matchlockmusket = new Musket("matchlock_musket"); + /********** + INGOTS AND CHUNKS + **********/ ironingotballhot = new BaseMultiItem("ironingothot", ModMaterials.TOOL_WROUGHT_IRON); ironchunkhot = new BaseMultiItem("ironchunkhot", ModMaterials.TOOL_WROUGHT_IRON);