summaryrefslogtreecommitdiffstats
path: root/weatbag/tiles/n3w6.py
diff options
context:
space:
mode:
Diffstat (limited to 'weatbag/tiles/n3w6.py')
-rw-r--r--weatbag/tiles/n3w6.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/weatbag/tiles/n3w6.py b/weatbag/tiles/n3w6.py
index b50be06..c4c5b6c 100644
--- a/weatbag/tiles/n3w6.py
+++ b/weatbag/tiles/n3w6.py
@@ -1,17 +1,17 @@
class Tile:
def describe(self):
- print("Rocks. Big rocks. Slipery rocks all over!\n")
+ print("Rocks. Big rocks. Slippery rocks all over!\n")
def action(self, player, do):
print("Sorry, I don't understand.\n")
def leave(self, player, direction):
if direction == "w":
- print("No-no! You'll break your head to the rocks down there!\n")
+ print("No-no! You'll break your head on the rocks down there!\n")
return False
elif direction == "s":
- print("You follow the path uphill. Just be careful of the slipery "
+ print("You follow the path uphill. Just be careful of the slippery "
"rocks.")
return True
elif direction == "n":