[BACK]Return to daemons.c CVS log [TXT][DIR] Up to [contributed] / early-roguelike / rogue5

Diff for /early-roguelike/rogue5/daemons.c between version 1.1 and 1.2

version 1.1, 2021/03/09 20:01:40 version 1.2, 2021/03/09 20:51:39
Line 151  stomach(void)
Line 151  stomach(void)
         if (no_command || rnd(5) != 0)          if (no_command || rnd(5) != 0)
             return;              return;
         no_command += rnd(8) + 4;          no_command += rnd(8) + 4;
           player.t_flags &= ~ISRUN; //BUGFIX
         hungry_state = 3;          hungry_state = 3;
         if (!terse)          if (!terse)
             addmsg(choose_str("the munchies overpower your motor capabilities.  ",              addmsg(choose_str("the munchies overpower your motor capabilities.  ",
Line 179  stomach(void)
Line 180  stomach(void)
         }          }
     }      }
     if (hungry_state != orig_hungry) {      if (hungry_state != orig_hungry) {
         player.t_flags &= ~ISRUN;  
         running = FALSE;          running = FALSE;
         to_death = FALSE;          to_death = FALSE;
         count = 0;          count = 0;

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

CVSweb