Tweak liking thresholds. Required interest rate is higher to discourage flirt grinding.
[rogue-pphs.git] / fight.c
diff --git a/fight.c b/fight.c
index e785fdd..3b604bf 100644 (file)
--- a/fight.c
+++ b/fight.c
@@ -108,7 +108,7 @@ register struct thing *mp;
     if (rnd(5) == 0)\r
         mp->t_stats.s_int--;\r
 \r
-    if (mp->t_stats.s_int > INTERESTED)\r
+    if (mp->t_stats.s_int > READY)\r
     {\r
         const char *msgs[] = {\r
             "The %s smiles at you.",\r
@@ -119,7 +119,7 @@ register struct thing *mp;
         msg(rndchoice(msgs), monsters[mp->t_type-'A'].m_name);\r
         return;\r
     }\r
-    else if (2 * mp->t_stats.s_int > rnd(INTERESTED))\r
+    else if (mp->t_stats.s_int > rnd(INTERESTED))\r
     {\r
         const char *msgs[] = {\r
             "The %s stares at you.",\r