From a1eadef68667f3203f386dcfa07561665cfd3db1 Mon Sep 17 00:00:00 2001 From: Griatch Date: Mon, 24 Aug 2015 22:09:55 +0200 Subject: [PATCH] Removed an unexpected alias overload in the CrumblingWall tutorial world puzzle. This caused the shift command to be hidden. Resolves #786. --- evennia/contrib/tutorial_world/objects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/contrib/tutorial_world/objects.py b/evennia/contrib/tutorial_world/objects.py index 159c4366aa..aa3519dd41 100644 --- a/evennia/contrib/tutorial_world/objects.py +++ b/evennia/contrib/tutorial_world/objects.py @@ -534,7 +534,7 @@ class CmdPressButton(Command): Presses a button. """ key = "press" - aliases = ["press button", "button", "push", "push button"] + aliases = ["press button", "button", "push button"] # only accessible if the button was found and there is light. This checks # the Attribute button_exposed on the Wall object so that # you can only push the button when the puzzle is solved. It also