From 704b760c523b8dfbdf6ebeb5173bf5b8d3e76b7a Mon Sep 17 00:00:00 2001 From: Condorra Date: Fri, 15 Sep 2023 21:32:04 +1000 Subject: [PATCH] Make water more thirst-quenching. --- blastmud_game/src/models/item.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blastmud_game/src/models/item.rs b/blastmud_game/src/models/item.rs index 4454656..e020d2b 100644 --- a/blastmud_game/src/models/item.rs +++ b/blastmud_game/src/models/item.rs @@ -163,7 +163,7 @@ impl LiquidType { match self { LiquidType::Water => Some(EatData { hunger_impact: 0, - thirst_impact: -1, // 0.01% per mL + thirst_impact: -100, // 1% per mL }), } }