Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Re2Taz committed Nov 1, 2020
1 parent 857180c commit ca43d52
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion code/__defines/chemistry.dm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define DEFAULT_HUNGER_FACTOR 0.08 // Factor of how fast mob nutrition decreases
#define DEFAULT_THIRST_FACTOR 0.04 // Factor of how fast mob hydration decreases
#define DEFAULT_THIRST_FACTOR 0.08 // Factor of how fast mob hydration decreases

#define REM 0.2 // Means 'Reagent Effect Multiplier'. This is how many units of reagent are consumed per tick

Expand Down
2 changes: 1 addition & 1 deletion code/__defines/mobs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@
#define THIRST_LEVEL_FILLED 400
#define THIRST_LEVEL_MEDIUM 300
#define THIRST_LEVEL_THIRSTY 150
#define THIRST_LEVEL_DEHYDRATED 50
#define THIRST_LEVEL_DEHYDRATED 100
#define THIRST_FACTOR 0.5

//Hygiene levels for humans
Expand Down
2 changes: 1 addition & 1 deletion code/modules/organs/internal/liver.dm
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
if(prob(5))
to_chat(owner, "<span class='warning'>You could really use a drink!</span>")
else if(prob(6))
to_chat(owner, "<span class='warning'>Your mouoth feels really dry...</span>")
to_chat(owner, "<span class='warning'>Your mouth feels really dry...</span>")
if(0 to THIRST_LEVEL_DEHYDRATED)
owner.add_event("thirst", /datum/happiness_event/thirst/dehydrated)
if(prob(5))
Expand Down

0 comments on commit ca43d52

Please sign in to comment.