mirror of
https://github.com/tbamud/tbamud.git
synced 2026-04-18 01:59:03 +02:00
Fixed do_set formatting and removed the magic numbers for setting DRUNK/HUNGER/THIRST. Renamed FULL to HUNGER. --Rumble
This commit is contained in:
parent
1d9cff608c
commit
1f72880ce7
7 changed files with 54 additions and 28 deletions
|
|
@ -839,7 +839,7 @@ ACMD(do_score)
|
|||
if (GET_COND(ch, DRUNK) > 10)
|
||||
send_to_char(ch, "You are intoxicated.\r\n");
|
||||
|
||||
if (GET_COND(ch, FULL) == 0)
|
||||
if (GET_COND(ch, HUNGER) == 0)
|
||||
send_to_char(ch, "You are hungry.\r\n");
|
||||
|
||||
if (GET_COND(ch, THIRST) == 0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue