aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech
diff options
context:
space:
mode:
author‭huajijam <strhuaji@gmail.com>2019-02-04 21:59:35 +0800
committer‭huajijam <strhuaji@gmail.com>2019-02-04 21:59:35 +0800
commitd77833944e8cbd224d1863cecc3dc58ce1b76c31 (patch)
treec913f614c49f7304edfa357d480aafa36c5ac751 /src/Java/gtPlusPlus/xmod/gregtech
parent465d11f475ff755fa3965239da4efd43cc427c94 (diff)
parent6578a3af1a8ddd6bf661e6e051b39a27d4a5c112 (diff)
downloadGT5-Unofficial-d77833944e8cbd224d1863cecc3dc58ce1b76c31.tar.gz
GT5-Unofficial-d77833944e8cbd224d1863cecc3dc58ce1b76c31.tar.bz2
GT5-Unofficial-d77833944e8cbd224d1863cecc3dc58ce1b76c31.zip
Automatic synchronization
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechMiniRaFusion.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechMiniRaFusion.java b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechMiniRaFusion.java
index f624b78ab8..c9f42e437d 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechMiniRaFusion.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechMiniRaFusion.java
@@ -19,8 +19,9 @@ public class GregtechMiniRaFusion {
public static boolean generateSlowFusionrecipes() {
for (GT_Recipe x : GT_Recipe.GT_Recipe_Map.sFusionRecipes.mRecipeList){
if (x.mEnabled) {
- x.mDuration *= 4;
- Recipe_GT.Gregtech_Recipe_Map.sSlowFusionRecipes.add(x);
+ GT_Recipe y = x.copy();
+ y.mDuration *= 4;
+ Recipe_GT.Gregtech_Recipe_Map.sSlowFusionRecipes.add(y);
}
}
int mRecipeCount = Recipe_GT.Gregtech_Recipe_Map.sSlowFusionRecipes.mRecipeList.size();