Compare commits

..

No commits in common. "704b760c523b8dfbdf6ebeb5173bf5b8d3e76b7a" and "96424f3a1f1339b53a4791ea186394a025ca22ba" have entirely different histories.

2 changed files with 1 additions and 2 deletions

View File

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

View File

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