summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDrNuget <drnuget@outlook.com>2024-09-01 01:50:18 +0300
committerDrNuget <drnuget@outlook.com>2024-09-01 01:50:18 +0300
commit58b8c20b9aefe1bf1ec4c00b9f3217d770e8e525 (patch)
tree32f20ee42fff083a791ea1fbe86c1aa54f2060ef
parentff3f3eec73c6fdaa01d22d4aaf55d0ec3a655e9e (diff)
removed duplicate groovy file
-rw-r--r--.gitattributes2
-rw-r--r--.gitignore5
-rw-r--r--groovy/postInit/oreDicts.groovy23
3 files changed, 7 insertions, 23 deletions
diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..d790abd
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,2 @@
+# Disable Git line ending conversion, to prevent packwiz index hashes changing when committing from Windows
+* -text \ No newline at end of file
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..f587784
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,5 @@
+# Exclude exported CurseForge zip files
+*.zip
+
+# Exclude exported Modrinth modpacks
+*.mrpack \ No newline at end of file
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"));