From 81a5e3c95637093f6cce2697b3a561cc23b345fc Mon Sep 17 00:00:00 2001 From: WayofTime Date: Tue, 28 Jun 2016 07:26:16 -0400 Subject: [PATCH] Switched key usage check around because boni worries too much... --- src/main/java/WayofTime/bloodmagic/tile/TileAlchemyArray.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/WayofTime/bloodmagic/tile/TileAlchemyArray.java b/src/main/java/WayofTime/bloodmagic/tile/TileAlchemyArray.java index 2242512f..135885e7 100644 --- a/src/main/java/WayofTime/bloodmagic/tile/TileAlchemyArray.java +++ b/src/main/java/WayofTime/bloodmagic/tile/TileAlchemyArray.java @@ -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)