diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Mob.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Mob.java index 30bb14bce..47f88bbd7 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Mob.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Mob.java @@ -366,7 +366,8 @@ public abstract class Mob extends Char { if (enemy.buff(Corruption.class) != null) { aggro(enemy); target = enemy.pos; - state = HUNTING; + if (state == SLEEPING || state == WANDERING) + state = HUNTING; } return damage;