From 4a605b6249c9ad9711e254b7d8c95ec5b6b1d089 Mon Sep 17 00:00:00 2001 From: Alkalus <3060479+draknyte1@users.noreply.github.com> Date: Sat, 26 May 2018 12:52:33 +1000 Subject: % Initial start to LFTR reworking. % Changed around the capes a lil bit. --- .../machines/multi/production/GregtechMTE_NuclearReactor.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/tileentities') diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_NuclearReactor.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_NuclearReactor.java index 3f2d622c70..931896b2e2 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_NuclearReactor.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_NuclearReactor.java @@ -34,7 +34,6 @@ import net.minecraftforge.fluids.FluidStack; public class GregtechMTE_NuclearReactor extends GregtechMeta_MultiBlockBase { - public GT_Recipe mLastRecipe; protected long mEUStore; protected int fuelConsumption = 0; protected int fuelValue = 0; @@ -447,6 +446,7 @@ public class GregtechMTE_NuclearReactor extends GregtechMeta_MultiBlockBase { } + if (this.getBaseMetaTileEntity().getWorld().getTotalWorldTime() % 100 == 0) { //Try Sparge Noble Gases if (this.heliumSparging){ if (this.depleteInput(Materials.Helium.getGas(1000L))){ @@ -484,6 +484,7 @@ public class GregtechMTE_NuclearReactor extends GregtechMeta_MultiBlockBase { } } } + } if (aFuel != null){ -- cgit