X-Git-Url: https://git.yukkurigames.com/?p=rogue-pphs.git;a=blobdiff_plain;f=fight.c;h=3b604bf3bc7b213f656568421324b0659bc0cb00;hp=e785fdd299b61fdf1b43cc495966d87c5b68d65e;hb=2b01379a8064b573eea4362c9b8d030ab27c6043;hpb=7b22b2ac9aec39574258cabfc45fb426ff7254f4 diff --git a/fight.c b/fight.c index e785fdd..3b604bf 100644 --- a/fight.c +++ b/fight.c @@ -108,7 +108,7 @@ register struct thing *mp; if (rnd(5) == 0) mp->t_stats.s_int--; - if (mp->t_stats.s_int > INTERESTED) + if (mp->t_stats.s_int > READY) { const char *msgs[] = { "The %s smiles at you.", @@ -119,7 +119,7 @@ register struct thing *mp; msg(rndchoice(msgs), monsters[mp->t_type-'A'].m_name); return; } - else if (2 * mp->t_stats.s_int > rnd(INTERESTED)) + else if (mp->t_stats.s_int > rnd(INTERESTED)) { const char *msgs[] = { "The %s stares at you.",