diff options
| author | George Angelopoulos <l4than.d3vers@gmail.com> | 2013-04-20 21:24:57 +0300 |
|---|---|---|
| committer | George Angelopoulos <l4than.d3vers@gmail.com> | 2013-04-20 21:24:57 +0300 |
| commit | ccf803ea46650c157c717336a5f0e2c217b4f5d4 (patch) | |
| tree | 84ee8806a241640e47a24c720bd1f9d004432c87 /weatbag/tiles/e1.py | |
| parent | b69c7bfa3d7d40c1c9d91ff424194a14e4e2a62f (diff) | |
Fixed bug I had made on leave method for e1.
I wasn't returning True/False for North, East, West.
Diffstat (limited to 'weatbag/tiles/e1.py')
| -rw-r--r-- | weatbag/tiles/e1.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/weatbag/tiles/e1.py b/weatbag/tiles/e1.py index 55fe4cc..5a0cded 100644 --- a/weatbag/tiles/e1.py +++ b/weatbag/tiles/e1.py @@ -27,6 +27,8 @@ class Tile: def leave(self,player,direction): if direction == 's': print("You decide the path is too boring for you,\n" - "so you follow the stream south, looking for adventure!") + "so you follow the stream south, looking for adventure!") input() return True + else: + return True |
