Switched key usage check around because boni worries too much...

This commit is contained in:
WayofTime 2016-06-28 07:26:16 -04:00
parent 11e56158d3
commit 81a5e3c956

View file

@ -43,7 +43,7 @@ public class TileAlchemyArray extends TileInventory implements ITickable
super.writeToNBT(tagCompound);
tagCompound.setBoolean("isActive", isActive);
tagCompound.setInteger("activeCounter", activeCounter);
tagCompound.setString("key", key == "" ? "empty" : key);
tagCompound.setString("key", "".equals(key) ? "empty" : key);
NBTTagCompound arrayTag = new NBTTagCompound();
if (arrayEffect != null)