v0.2.3: buff immunity collection fixes

This commit is contained in:
Evan Debenham
2014-12-14 14:49:51 -05:00
parent 1e3bc31c6b
commit cfb74c0a2d
5 changed files with 6 additions and 6 deletions
@@ -27,9 +27,9 @@ public class Buff extends Actor {
public Char target;
public static HashSet<Class<?>> resistances = new HashSet<Class<?>>();
public HashSet<Class<?>> resistances = new HashSet<Class<?>>();
public static HashSet<Class<?>> immunities = new HashSet<Class<?>>();
public HashSet<Class<?>> immunities = new HashSet<Class<?>>();
public boolean attachTo( Char target ) {