diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Succubus.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Succubus.java index c369df162..e646b067b 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Succubus.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Succubus.java @@ -113,8 +113,10 @@ public class Succubus extends Mob { } if (candidates.size() > 0) cell = Random.element(candidates); - else + else { + delay = BLINK_DELAY; return; + } } ScrollOfTeleportation.appear( this, cell );