aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/loaders/load
diff options
context:
space:
mode:
authorMary <33456283+FourIsTheNumber@users.noreply.github.com>2024-09-21 14:41:18 -0400
committerGitHub <noreply@github.com>2024-09-21 18:41:18 +0000
commit1a7a69c2850cb44a22c5428a27868db13338e292 (patch)
treebf92240a1488591cd3807e3aba06e3e5204239f3 /src/main/java/gregtech/loaders/load
parente874e974a4c86b60c07122fafbd1679b1e310f1a (diff)
downloadGT5-Unofficial-1a7a69c2850cb44a22c5428a27868db13338e292.tar.gz
GT5-Unofficial-1a7a69c2850cb44a22c5428a27868db13338e292.tar.bz2
GT5-Unofficial-1a7a69c2850cb44a22c5428a27868db13338e292.zip
Fix more collisions (#3246)
Co-authored-by: BlueHero233 <87818077+BlueHero233@users.noreply.github.com>
Diffstat (limited to 'src/main/java/gregtech/loaders/load')
-rw-r--r--src/main/java/gregtech/loaders/load/GTItemIterator.java24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/main/java/gregtech/loaders/load/GTItemIterator.java b/src/main/java/gregtech/loaders/load/GTItemIterator.java
index 63ac59b7c2..dc0f951ebc 100644
--- a/src/main/java/gregtech/loaders/load/GTItemIterator.java
+++ b/src/main/java/gregtech/loaders/load/GTItemIterator.java
@@ -126,35 +126,11 @@ public class GTItemIterator implements Runnable {
GTLog.out.println(
"GTMod: Adding Food Recipes to the Automatic Canning Machine. (also during the following Item Iteration)");
GTValues.RA.stdBuilder()
- .itemInputs(new ItemStack(Items.rotten_flesh, 2, WILDCARD), ItemList.IC2_Food_Can_Empty.get(1L))
- .itemOutputs(ItemList.IC2_Food_Can_Spoiled.get(1L))
- .duration(10 * SECONDS)
- .eut(1)
- .addTo(cannerRecipes);
- GTValues.RA.stdBuilder()
- .itemInputs(new ItemStack(Items.spider_eye, 2, WILDCARD), ItemList.IC2_Food_Can_Empty.get(1L))
- .itemOutputs(ItemList.IC2_Food_Can_Spoiled.get(1L))
- .duration(5 * SECONDS)
- .eut(1)
- .addTo(cannerRecipes);
- GTValues.RA.stdBuilder()
- .itemInputs(ItemList.Food_Poisonous_Potato.get(2L), ItemList.IC2_Food_Can_Empty.get(1L))
- .itemOutputs(ItemList.IC2_Food_Can_Spoiled.get(1L))
- .duration(5 * SECONDS)
- .eut(1)
- .addTo(cannerRecipes);
- GTValues.RA.stdBuilder()
.itemInputs(new ItemStack(Items.cake, 1, WILDCARD), ItemList.IC2_Food_Can_Empty.get(12L))
.itemOutputs(ItemList.IC2_Food_Can_Filled.get(12L))
.duration(30 * SECONDS)
.eut(1)
.addTo(cannerRecipes);
- GTValues.RA.stdBuilder()
- .itemInputs(new ItemStack(Items.mushroom_stew, 1, WILDCARD), ItemList.IC2_Food_Can_Empty.get(6L))
- .itemOutputs(ItemList.IC2_Food_Can_Filled.get(6L), new ItemStack(Items.bowl, 1))
- .duration(15 * SECONDS)
- .eut(1)
- .addTo(cannerRecipes);
GTLog.out.println("GTMod: Scanning ItemList.");