Compare commits

...

2 Commits

Author SHA1 Message Date
704b760c52 Make water more thirst-quenching. 2023-09-15 21:32:04 +10:00
5a5408479a Make stats an alias for status. 2023-09-15 21:31:41 +10:00
2 changed files with 2 additions and 1 deletions

View File

@ -229,6 +229,7 @@ static REGISTERED_COMMANDS: UserVerbRegistry = phf_map! {
"st" => status::VERB, "st" => status::VERB,
"stat" => status::VERB, "stat" => status::VERB,
"stats" => status::VERB,
"status" => status::VERB, "status" => status::VERB,
"uninstall" => uninstall::VERB, "uninstall" => uninstall::VERB,

View File

@ -163,7 +163,7 @@ impl LiquidType {
match self { match self {
LiquidType::Water => Some(EatData { LiquidType::Water => Some(EatData {
hunger_impact: 0, hunger_impact: 0,
thirst_impact: -1, // 0.01% per mL thirst_impact: -100, // 1% per mL
}), }),
} }
} }