From 58b8c20b9aefe1bf1ec4c00b9f3217d770e8e525 Mon Sep 17 00:00:00 2001 From: DrNuget Date: Sun, 1 Sep 2024 01:50:18 +0300 Subject: removed duplicate groovy file --- .gitattributes | 2 ++ .gitignore | 5 +++++ groovy/postInit/oreDicts.groovy | 23 ----------------------- 3 files changed, 7 insertions(+), 23 deletions(-) create mode 100644 .gitattributes create mode 100644 .gitignore delete mode 100644 groovy/postInit/oreDicts.groovy 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")); -- cgit v1.2.3