From 498cfacb399c475ef8e0efcf18d1d1e4d30832ba Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Mon, 6 Oct 2014 16:52:04 -0400 Subject: [PATCH] V0.2.1: DM-300 is now immune to terror (fixes unintended fear-heal behaviour) --- .../shatteredpixel/shatteredpixeldungeon/actors/mobs/DM300.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/DM300.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/DM300.java index 0079c7888..20a9637ba 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/DM300.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/DM300.java @@ -19,6 +19,7 @@ package com.shatteredpixel.shatteredpixeldungeon.actors.mobs; import java.util.HashSet; +import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Terror; import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.CapeOfThorns; import com.watabou.noosa.Camera; import com.watabou.noosa.audio.Sample; @@ -164,6 +165,7 @@ public class DM300 extends Mob { private static final HashSet> IMMUNITIES = new HashSet>(); static { IMMUNITIES.add( ToxicGas.class ); + IMMUNITIES.add( Terror.class ); } @Override