diff options
author | DrNuget <drnuget@outlook.com> | 2024-09-01 01:47:41 +0300 |
---|---|---|
committer | DrNuget <drnuget@outlook.com> | 2024-09-01 01:47:41 +0300 |
commit | ff3f3eec73c6fdaa01d22d4aaf55d0ec3a655e9e (patch) | |
tree | c33e0cc839e4c654239dc2ee62e831860f07f6f7 /groovy/postInit/oredicts.groovy |
first commit
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")); |