summaryrefslogtreecommitdiff
path: root/groovy
diff options
context:
space:
mode:
Diffstat (limited to 'groovy')
-rw-r--r--groovy/postInit/oreDicts.groovy23
1 files changed, 0 insertions, 23 deletions
diff --git a/groovy/postInit/oreDicts.groovy b/groovy/postInit/oreDicts.groovy
deleted file mode 100644
index 9bcbed9..0000000
--- a/groovy/postInit/oreDicts.groovy
+++ /dev/null
@@ -1,23 +0,0 @@
-for (i in [
- "ingotBronze",
- "nuggetBronze",
- "gearBronze",
- "plateBronze",
-
- "ingotCopper",
- "nuggetCopper",
- "gearCopper",
- "plateCopper",
-
- "ingotTin",
- "nuggetTin",
- "gearTin",
- "plateTin",
-
- "ingotSilver"
-]) {
- oreDict.removeAll(i);
- oreDict.add(i, metaitem(i));
-}
-
-crafting.removeByOutput(item("gregtech:pickaxe"));