mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-01-20 06:03:01 +00:00
Orb of the Mind now actually kills reptiles
This commit is contained in:
parent
42eec2a90f
commit
80ab04de36
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user