aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/items
diff options
context:
space:
mode:
authorMary <33456283+FourIsTheNumber@users.noreply.github.com>2024-09-25 16:19:07 -0400
committerGitHub <noreply@github.com>2024-09-25 22:19:07 +0200
commitd392aef3a42041ce152e2206810a638e65a493bf (patch)
treec97e76bbc828d24e85ffbce0b61a939188151640 /src/main/java/gregtech/common/items
parent5c5d94ad6517090ca6706341d3a739b490784fef (diff)
downloadGT5-Unofficial-d392aef3a42041ce152e2206810a638e65a493bf.tar.gz
GT5-Unofficial-d392aef3a42041ce152e2206810a638e65a493bf.tar.bz2
GT5-Unofficial-d392aef3a42041ce152e2206810a638e65a493bf.zip
Fix sealed wood + more collisions (#3282)
Diffstat (limited to 'src/main/java/gregtech/common/items')
-rw-r--r--src/main/java/gregtech/common/items/ItemDrop.java34
1 files changed, 1 insertions, 33 deletions
diff --git a/src/main/java/gregtech/common/items/ItemDrop.java b/src/main/java/gregtech/common/items/ItemDrop.java
index 1f56b79242..bac555934d 100644
--- a/src/main/java/gregtech/common/items/ItemDrop.java
+++ b/src/main/java/gregtech/common/items/ItemDrop.java
@@ -107,12 +107,6 @@ public class ItemDrop extends Item {
ItemStack tDrop;
tDrop = getStackForType(DropType.OIL);
- addProcessLV(
- tDrop,
- Materials.OilHeavy.getFluid(100L),
- GTModHandler.getModItem(Forestry.ID, "propolis", 1L, 0),
- 3000,
- 8);
RecipeManagers.squeezerManager.addRecipe(
40,
new ItemStack[] { tDrop },
@@ -120,12 +114,6 @@ public class ItemDrop extends Item {
GTModHandler.getModItem(Forestry.ID, "propolis", 1L, 0),
30);
tDrop = getStackForType(DropType.COOLANT);
- addProcessLV(
- tDrop,
- new FluidStack(FluidRegistry.getFluid("ic2coolant"), 100),
- GTModHandler.getModItem(MagicBees.ID, "propolis", 1L, 0),
- 3000,
- 8);
RecipeManagers.squeezerManager.addRecipe(
40,
new ItemStack[] { tDrop },
@@ -133,12 +121,6 @@ public class ItemDrop extends Item {
GTModHandler.getModItem(MagicBees.ID, "propolis", 1L, 0),
30);
tDrop = getStackForType(DropType.HOT_COOLANT);
- addProcessLV(
- tDrop,
- new FluidStack(FluidRegistry.getFluid("ic2hotcoolant"), 100),
- GTModHandler.getModItem(MagicBees.ID, "propolis", 1L, 2),
- 3000,
- 8);
RecipeManagers.squeezerManager.addRecipe(
40,
new ItemStack[] { tDrop },
@@ -153,13 +135,6 @@ public class ItemDrop extends Item {
1500,
48);
tDrop = getStackForType(DropType.LAPIS);
- addProcessLV(
- tDrop,
- new FluidStack(FluidRegistry.getFluid("ic2coolant"), 200),
- GTModHandler.getModItem(MagicBees.ID, "propolis", 1L, 3),
- 5000,
- 1200,
- 2);
RecipeManagers.squeezerManager.addRecipe(
400,
new ItemStack[] { tDrop },
@@ -174,17 +149,10 @@ public class ItemDrop extends Item {
3000,
8);
tDrop = getStackForType(DropType.OXYGEN);
- addProcessLV(
- tDrop,
- new FluidStack(FluidRegistry.getFluid("liquidoxygen"), 100),
- GTModHandler.getModItem(ExtraBees.ID, "propolis", 1L, 2),
- 250,
- 1200,
- 8);
RecipeManagers.squeezerManager.addRecipe(
400,
new ItemStack[] { tDrop },
- new FluidStack(FluidRegistry.getFluid("ic2coolant"), 100),
+ new FluidStack(FluidRegistry.getFluid("liquidoxygen"), 100),
GTModHandler.getModItem(ExtraBees.ID, "propolis", 1L, 2),
30);
tDrop = getStackForType(DropType.ENDERGOO);