summaryrefslogtreecommitdiffstats
path: root/weatbag/tiles/n2w2.py
diff options
context:
space:
mode:
authorKleopatra Angelidi <akleop@gmail.com>2013-04-29 01:48:18 +0300
committerKleopatra Angelidi <akleop@gmail.com>2013-04-29 03:21:18 +0300
commitae6c874d790825891aefbcfd366749eaeb2fcf05 (patch)
tree89d7bda3bb069b6e79a9f6c6913d739d9bb26852 /weatbag/tiles/n2w2.py
parent42c316ccd1275eeecf9a66317b43acf6cc0b3cc8 (diff)
small indentation fix on n2w2
Diffstat (limited to 'weatbag/tiles/n2w2.py')
-rw-r--r--weatbag/tiles/n2w2.py34
1 files changed, 17 insertions, 17 deletions
diff --git a/weatbag/tiles/n2w2.py b/weatbag/tiles/n2w2.py
index 0957571..6ad3b1f 100644
--- a/weatbag/tiles/n2w2.py
+++ b/weatbag/tiles/n2w2.py
@@ -1,18 +1,18 @@
class Tile:
- def describe(self):
- print("You are now on the island. In front of you there are some trees "
- "and a small path.\nFeeling adventurous?\n")
-
- def action(self, player, do):
- print("Sorry, wat?!")
-
- def leave(self, player, direction):
- if direction == "e":
- print("You can't go back by swimming, that part is full of "
- "electric eels.\n")
- return False
- elif direction == "s":
- print("I'm afraid I can't let you go there Dave.\n")
- return False
- else:
- return True
+ def describe(self):
+ print("You are now on the island. In front of you there are some trees "
+ "and a small path.\nFeeling adventurous?\n")
+
+ def action(self, player, do):
+ print("Sorry, wat?!")
+
+ def leave(self, player, direction):
+ if direction == "e":
+ print("You can't go back by swimming, that part is full of "
+ "electric eels.\n")
+ return False
+ elif direction == "s":
+ print("I'm afraid I can't let you go there Dave.\n")
+ return False
+ else:
+ return True