diff options
| author | Ben Friedland <ben174@gmail.com> | 2013-01-07 07:19:31 -0800 |
|---|---|---|
| committer | Ben Friedland <ben174@gmail.com> | 2013-01-07 07:19:31 -0800 |
| commit | bde94f80e518182888d944430bcfe7329d48e817 (patch) | |
| tree | 57de5461381d9f3606e568de0f764613d81a1f9d /weatbag/__init__.py | |
| parent | 3276c1c553e80780e2cd88032b61b923517dc115 (diff) | |
Else condition for reporting health is now a catch-all (in case they go into negative hit points).
Diffstat (limited to 'weatbag/__init__.py')
| -rw-r--r-- | weatbag/__init__.py | 2 |
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" |
