diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Skeleton.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Skeleton.java index 182c37941..d338d5f80 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Skeleton.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Skeleton.java @@ -108,14 +108,5 @@ public class Skeleton extends Mob { public int drRoll() { return Random.NormalIntRange(0, 5); } - - private static final HashSet> IMMUNITIES = new HashSet<>(); - static { - IMMUNITIES.add( Grim.class ); - } - - @Override - public HashSet> immunities() { - return IMMUNITIES; - } + }