From bde94f80e518182888d944430bcfe7329d48e817 Mon Sep 17 00:00:00 2001 From: Ben Friedland Date: Mon, 7 Jan 2013 07:19:31 -0800 Subject: Else condition for reporting health is now a catch-all (in case they go into negative hit points). --- weatbag/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weatbag/__init__.py b/weatbag/__init__.py index f9c34bf..303962e 100644 --- a/weatbag/__init__.py +++ b/weatbag/__init__.py @@ -39,7 +39,7 @@ class Player: return "feeling very unhealthy" elif self.hit_points == 1: return "nearly dead" - elif self.hit_points == 0: + else: return "dead" -- cgit v1.3