diff options
| -rw-r--r-- | weatbag/tiles/n1w4.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/weatbag/tiles/n1w4.py b/weatbag/tiles/n1w4.py index d3a9c2b..984063e 100644 --- a/weatbag/tiles/n1w4.py +++ b/weatbag/tiles/n1w4.py @@ -34,7 +34,7 @@ class Tile: #To describe 11, you have two 1's, or 21. Now you have one 2 and one 1, #so the next number is 1211. The solution is to simply continue #describing the previous number using only numbers.\n") - + def action(self, player, do): if not self.challenge_completed: if do[0] == self.sequence: @@ -46,6 +46,8 @@ class Tile: self.contents['neko'] -= 1 player.give('neko') self.challenge_completed = True + else: + print("Wut? Try h4rd3r st00p3d hum4n!") else: print("I don't understand...") |
