Fix an array size error

This commit is contained in:
libraryaddict 2016-12-10 23:58:10 +13:00
parent 6a70b3e740
commit 4f13f0331b

@ -36,7 +36,7 @@ public class FlagWatcher {
private HashMap<Integer, Object> entityValues = new HashMap<>(); private HashMap<Integer, Object> entityValues = new HashMap<>();
private LibsEquipment equipment; private LibsEquipment equipment;
private boolean hasDied; private boolean hasDied;
private boolean[] modifiedEntityAnimations = new boolean[6]; private boolean[] modifiedEntityAnimations = new boolean[7];
private List<WrappedWatchableObject> watchableObjects; private List<WrappedWatchableObject> watchableObjects;
public FlagWatcher(Disguise disguise) { public FlagWatcher(Disguise disguise) {