From f422238d7aaae0ff1b2d560a71a99b0a881ad338 Mon Sep 17 00:00:00 2001 From: troido Date: Sun, 23 Feb 2020 22:12:21 +0100 Subject: players can get damage from traps --- src/playerstate.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/playerstate.rs') diff --git a/src/playerstate.rs b/src/playerstate.rs index 694ce60..6e41623 100644 --- a/src/playerstate.rs +++ b/src/playerstate.rs @@ -41,8 +41,8 @@ impl PlayerState { pos: RoomPos::Unknown, inventory: Vec::new(), inventory_capacity: 10, - health: 9, - maximum_health: 10 + health: 25, + maximum_health: 50 } } -- cgit