Removed a stupid mistake
This commit is contained in:
parent
fbb63ba742
commit
f667cdb4fe
|
@ -145,7 +145,7 @@ on_monster_collision(Player *player,
|
|||
if (get_random(10) < player_has_artifact(player, FEAR_INDUCING)) {
|
||||
gui_log("%s shivers with fear at the sight of you",
|
||||
monster->label);
|
||||
if (!monster->state.current == STUNNED)
|
||||
if (monster->state.current != STUNNED)
|
||||
monster_set_state(monster, SCARED, 3);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue