Orb of the Mind now actually kills reptiles

This commit is contained in:
Zeno Rogue 2020-11-05 15:12:50 +01:00
parent 42eec2a90f
commit 80ab04de36
1 changed files with 1 additions and 1 deletions

View File

@ -372,7 +372,7 @@ EX bool attackJustStuns(cell *c2, flagtype f, eMonster attacker) {
return true;
else if((f & AF_SWORD) && c2->monst == moSkeleton)
return false;
else if(f & (AF_CRUSH | AF_MAGIC | AF_FALL | AF_EAT | AF_GUN))
else if(f & (AF_CRUSH | AF_MAGIC | AF_FALL | AF_EAT | AF_GUN | AF_PSI))
return false;
else
return isStunnable(c2->monst) && c2->hitpoints > 1;