summaryrefslogtreecommitdiffstats
path: root/weatbag
diff options
context:
space:
mode:
authorBen Friedland <ben174@gmail.com>2013-01-07 07:19:31 -0800
committerBen Friedland <ben174@gmail.com>2013-01-07 07:19:31 -0800
commitbde94f80e518182888d944430bcfe7329d48e817 (patch)
tree57de5461381d9f3606e568de0f764613d81a1f9d /weatbag
parent3276c1c553e80780e2cd88032b61b923517dc115 (diff)
Else condition for reporting health is now a catch-all (in case they go into negative hit points).
Diffstat (limited to 'weatbag')
-rw-r--r--weatbag/__init__.py2
1 files changed, 1 insertions, 1 deletions
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"