Switched key usage check around because boni worries too much...
This commit is contained in:
parent
11e56158d3
commit
81a5e3c956
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue