From 0d3b8f4079fb5ea7d0e1a85e35324fbcbba68be9 Mon Sep 17 00:00:00 2001 From: Griatch Date: Sun, 31 Dec 2017 13:40:16 +0100 Subject: [PATCH] Fix wrong call of _SEARCH_AT_RESULT from tutorial version of look, as reported in #1544. --- evennia/contrib/tutorial_world/rooms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/contrib/tutorial_world/rooms.py b/evennia/contrib/tutorial_world/rooms.py index c16baccff1..15bddefb01 100644 --- a/evennia/contrib/tutorial_world/rooms.py +++ b/evennia/contrib/tutorial_world/rooms.py @@ -168,7 +168,7 @@ class CmdTutorialLook(default_cmds.CmdLook): else: # no detail found, delegate our result to the normal # error message handler. - _SEARCH_AT_RESULT(None, caller, args, looking_at_obj) + _SEARCH_AT_RESULT(looking_at_obj, caller, args) return else: # we found a match, extract it from the list and carry on