From 369b8a6266a210db4cb223518df8f6ea9ce7ba9e Mon Sep 17 00:00:00 2001 From: modmuss50 Date: Sun, 18 Mar 2018 23:43:03 +0000 Subject: [PATCH] Fixes #1461 --- .../tiles/fusionReactor/TileFusionControlComputer.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/main/java/techreborn/tiles/fusionReactor/TileFusionControlComputer.java b/src/main/java/techreborn/tiles/fusionReactor/TileFusionControlComputer.java index 2d09ae171..ef4ff8a83 100644 --- a/src/main/java/techreborn/tiles/fusionReactor/TileFusionControlComputer.java +++ b/src/main/java/techreborn/tiles/fusionReactor/TileFusionControlComputer.java @@ -310,6 +310,13 @@ public class TileFusionControlComputer extends TilePowerAcceptor this.finalTickTime = tagCompound.getInteger("finalTickTime"); this.neededPower = tagCompound.getInteger("neededPower"); this.hasStartedCrafting = tagCompound.getBoolean("hasStartedCrafting"); + if(tagCompound.hasKey("hasActiveRecipe") && tagCompound.getBoolean("hasActiveRecipe") && this.currentRecipe == null){ + for (final FusionReactorRecipe reactorRecipe : FusionReactorRecipeHelper.reactorRecipes) { + if (validateReactorRecipe(reactorRecipe)) { + this.currentRecipe = reactorRecipe; + } + } + } } @Override @@ -319,6 +326,7 @@ public class TileFusionControlComputer extends TilePowerAcceptor tagCompound.setInteger("finalTickTime", this.finalTickTime); tagCompound.setInteger("neededPower", this.neededPower); tagCompound.setBoolean("hasStartedCrafting", this.hasStartedCrafting); + tagCompound.setBoolean("hasActiveRecipe", this.currentRecipe != null); return tagCompound; }