aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/xmod/gregtech/common
diff options
context:
space:
mode:
authorMaxim <maxim235@gmx.de>2023-04-11 09:48:59 +0200
committerGitHub <noreply@github.com>2023-04-11 09:48:59 +0200
commitea709f845a20b02ded9061308a993f40f787372b (patch)
treed118f2c54c3ada80e3f4b82b1d9adf3d9b8e4da4 /src/main/java/gtPlusPlus/xmod/gregtech/common
parentb530a6fe0a12ac64b956095969fe308c144f4948 (diff)
downloadGT5-Unofficial-ea709f845a20b02ded9061308a993f40f787372b.tar.gz
GT5-Unofficial-ea709f845a20b02ded9061308a993f40f787372b.tar.bz2
GT5-Unofficial-ea709f845a20b02ded9061308a993f40f787372b.zip
Check for old key, instead of not new key (#600)
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/common')
-rw-r--r--src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_AlloyBlastSmelter.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_AlloyBlastSmelter.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_AlloyBlastSmelter.java
index c93d3f5edb..1ec0571259 100644
--- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_AlloyBlastSmelter.java
+++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_AlloyBlastSmelter.java
@@ -75,7 +75,7 @@ public class GregtechMetaTileEntity_AlloyBlastSmelter extends
@Override
public void loadNBTData(final NBTTagCompound aNBT) {
super.loadNBTData(aNBT);
- if (!aNBT.hasKey(INPUT_SEPARATION_NBT_KEY)) {
+ if (aNBT.hasKey("isBussesSeparate")) {
inputSeparation = aNBT.getBoolean("isBussesSeparate");
}
}