aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPxx500 <81298696+Pxx500@users.noreply.github.com>2024-08-03 01:56:52 +0200
committerGitHub <noreply@github.com>2024-08-03 01:56:52 +0200
commit60bf892fc5e26cacb7dfb33f8601dbb0e023f83a (patch)
treece36d6a13778a2a5b9b07d7e9d1feed8d09a09bc /src
parent0c1b60f93701a9f53d502d0118fbc93ab07b591d (diff)
downloadGT5-Unofficial-60bf892fc5e26cacb7dfb33f8601dbb0e023f83a.tar.gz
GT5-Unofficial-60bf892fc5e26cacb7dfb33f8601dbb0e023f83a.tar.bz2
GT5-Unofficial-60bf892fc5e26cacb7dfb33f8601dbb0e023f83a.zip
Fix RA2 porting mistake (#2813)
fix
Diffstat (limited to 'src')
-rw-r--r--src/main/java/com/github/bartimaeusnek/bartworks/common/loaders/ElectricImplosionCompressorRecipes.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/com/github/bartimaeusnek/bartworks/common/loaders/ElectricImplosionCompressorRecipes.java b/src/main/java/com/github/bartimaeusnek/bartworks/common/loaders/ElectricImplosionCompressorRecipes.java
index 37543a58c3..0e7614110b 100644
--- a/src/main/java/com/github/bartimaeusnek/bartworks/common/loaders/ElectricImplosionCompressorRecipes.java
+++ b/src/main/java/com/github/bartimaeusnek/bartworks/common/loaders/ElectricImplosionCompressorRecipes.java
@@ -54,8 +54,8 @@ public class ElectricImplosionCompressorRecipes implements Runnable {
.itemInputs(getModItem(GoodGenerator.ID, "highDensityPlutoniumNugget", 5L))
.itemOutputs(getModItem(GoodGenerator.ID, "highDensityPlutonium", 1L))
.fluidInputs(Materials.Neutronium.getMolten(72L))
- .duration(TierEU.RECIPE_UEV)
- .eut(1)
+ .duration(1)
+ .eut(TierEU.RECIPE_UEV)
.noOptimize()
.addTo(electricImplosionCompressorRecipes);