v0.9.1b: fixed necromancer's having no answer to blocked summoning

This commit is contained in:
Evan Debenham 2020-12-20 21:14:30 -05:00
parent d64200e907
commit 96d0b046d0

View File

@ -235,6 +235,12 @@ public class Necromancer extends Mob {
Dungeon.level.occupyCell(ch );
} else {
Char blocker = Actor.findChar(summoningPos);
if (blocker.alignment != alignment){
blocker.damage( Random.NormalIntRange(2, 10), this );
}
spend(TICK);
return true;
}