diff options
Diffstat (limited to 'groovy/postInit/oredicts.groovy')
-rw-r--r-- | groovy/postInit/oredicts.groovy | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/groovy/postInit/oredicts.groovy b/groovy/postInit/oredicts.groovy new file mode 100644 index 0000000..cb34797 --- /dev/null +++ b/groovy/postInit/oredicts.groovy @@ -0,0 +1,33 @@ +for (i in [ + "ingotBronze", + "nuggetBronze", + "blockBronze", + "gearBronze", + "plateBronze", + + "ingotCopper", + "nuggetCopper", + "blockCopper", + "gearCopper", + "plateCopper", + + "ingotTin", + "nuggetTin", + "blockTin", + "gearTin", + "plateTin", + + "ingotLead", + "nuggetLead", + "blockLead", + + "ingotSilver", + "blockSilver", + + "ingotRedAlloy" +]) { + oreDict.removeAll(i); + oreDict.add(i, metaitem(i)); +} + +crafting.removeByOutput(item("gregtech:pickaxe")); |