summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--weatbag/action.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/weatbag/action.py b/weatbag/action.py
index 0f1a848..e7e7424 100644
--- a/weatbag/action.py
+++ b/weatbag/action.py
@@ -36,7 +36,8 @@ def handle_action(tile, player, do):
# Show help text
display_help()
- elif len(do) == 2 and (do[0] in words.look) and (do[1] in words.surroundings):
+ elif (len(do) == 1 and (do[0] in words.look)) or \
+ (len(do) == 2 and (do[0] in words.look) and (do[1] in words.surroundings)):
# Look around
tile.describe()