diff options
| author | Kleopatra Angelidi <akleop@gmail.com> | 2013-04-29 02:00:22 +0300 |
|---|---|---|
| committer | Kleopatra Angelidi <akleop@gmail.com> | 2013-04-29 03:21:18 +0300 |
| commit | ae6b24f12f88262e00eacb36935ffb0ee0c2f103 (patch) | |
| tree | 1abb7985a5b3b94e38062b72460c5d5899f714a9 /weatbag | |
| parent | ea7bfdcf7a3a9c0c928e042fcf239256b878b5d8 (diff) | |
small indentation fix for n2w3
Diffstat (limited to 'weatbag')
| -rw-r--r-- | weatbag/tiles/n2w3.py | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/weatbag/tiles/n2w3.py b/weatbag/tiles/n2w3.py index 72f2181..9660dc4 100644 --- a/weatbag/tiles/n2w3.py +++ b/weatbag/tiles/n2w3.py @@ -1,20 +1,20 @@ class Tile: - def describe(self): - print("You are walking through the trees. It looks like the path you " - "took leads to a small wooden hut.\nYou saw a tree fall and it " - "didn't make any sound and WOW... that was weired because you " - "were there and observed it!\n") - # "If a tree falls in a forest and no one is around to hear it, - # does it make a sound?" is a philosophical thought experiment that - # raises questions regarding observation and knowledge of reality. - - def action(self, player, do): - print("Wat?!") - - def leave(self, player, direction): - if direction == "s": - print("STAHP! Hammer Time!\n(Meaning you just can't go to that " - "direction yet. Sorry! :))\n") - return False - else: - return True + def describe(self): + print("You are walking through the trees. It looks like the path you " + "took leads to a small wooden hut.\nYou saw a tree fall and it " + "didn't make any sound and WOW... that was weired because you " + "were there and observed it!\n") + # "If a tree falls in a forest and no one is around to hear it, + # does it make a sound?" is a philosophical thought experiment that + # raises questions regarding observation and knowledge of reality. + + def action(self, player, do): + print("Wat?!") + + def leave(self, player, direction): + if direction == "s": + print("STAHP! Hammer Time!\n(Meaning you just can't go to that " + "direction yet. Sorry! :))\n") + return False + else: + return True |
