X-Git-Url: https://git.yukkurigames.com/?p=rogue-pphs.git;a=blobdiff_plain;f=fight.c;h=3b604bf3bc7b213f656568421324b0659bc0cb00;hp=cab7ef7dd3d73e8654673c704c30db50e5a34a66;hb=167796e68e373813c676765504ada731ebd36913;hpb=e4a106dfa01b6c98a80e32a2dcd2ec501adbf952 diff --git a/fight.c b/fight.c index cab7ef7..3b604bf 100644 --- a/fight.c +++ b/fight.c @@ -3,7 +3,7 @@ * * @(#)fight.c 3.28 (Berkeley) 6/15/81 * - * Rogue: Exploring the Dungeons of Doom + * Rogue: Exploring the Cavern of Cuties * Copyright (C) 1980, 1981 Michael Toy, Ken Arnold and Glenn Wichman * All rights reserved. * @@ -108,18 +108,18 @@ 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.", "The %s moves in a little closer.", - "The %s bites its lip.", + "The %s bites eir lip.", "The %s looks at you expectantly.", }; 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.",