From 2350e22f5f06c844b66db4353fbc733709757a88 Mon Sep 17 00:00:00 2001 From: Condorra Date: Sun, 15 Oct 2023 17:12:30 +1100 Subject: [PATCH] Make water a bit less thirst quenching - it's gone a bit too far --- 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 79f4c851..8cb24181 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: -100, // 1% per mL + thirst_impact: -20, // 0.2% per mL }), } }