v0.9.1b: fixed necromancer's having no answer to blocked summoning
This commit is contained in:
parent
d64200e907
commit
96d0b046d0
|
@ -235,6 +235,12 @@ public class Necromancer extends Mob {
|
||||||
Dungeon.level.occupyCell(ch );
|
Dungeon.level.occupyCell(ch );
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
|
Char blocker = Actor.findChar(summoningPos);
|
||||||
|
if (blocker.alignment != alignment){
|
||||||
|
blocker.damage( Random.NormalIntRange(2, 10), this );
|
||||||
|
}
|
||||||
|
|
||||||
spend(TICK);
|
spend(TICK);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user