From 095e66fc0190be768a4051b03777d0fe8c5bcee6 Mon Sep 17 00:00:00 2001 From: timokoesters Date: Tue, 8 Oct 2019 20:36:46 +0200 Subject: [PATCH] fix: tweek hp --- common/src/comp/stats.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/comp/stats.rs b/common/src/comp/stats.rs index 09ebc940a1..c5c7e29f1d 100644 --- a/common/src/comp/stats.rs +++ b/common/src/comp/stats.rs @@ -169,7 +169,7 @@ impl Stats { // TODO: Delete this once stat points will be a thing pub fn update_max_hp(&mut self) { - self.health.set_maximum(22 * self.level.amount); + self.health.set_maximum(42 * self.level.amount); } }