Fixed a stupid bug by a stupid Way. Also work on negative Living Armour Upgrades

This commit is contained in:
WayofTime 2016-06-27 15:07:00 -04:00
parent 44617fac50
commit 23f8f23006
5 changed files with 71 additions and 2 deletions

View file

@ -12,7 +12,7 @@ public class TileAlchemyArray extends TileInventory implements ITickable
public boolean isActive = false;
public int activeCounter = 0;
private String key = "";
private String key = "empty";
private AlchemyArrayEffect arrayEffect;
public TileAlchemyArray()
@ -71,7 +71,7 @@ public class TileAlchemyArray extends TileInventory implements ITickable
isActive = false;
activeCounter = 0;
arrayEffect = null;
key = null;
key = "empty";
}
}