Removed a stupid mistake

This commit is contained in:
Linus Probert 2018-08-30 14:01:28 +02:00
parent 4013449878
commit 0ae8849323
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}