mirror of
https://github.com/evennia/evennia.git
synced 2026-03-23 08:16:30 +01:00
fixed a traceback in contrib.extended_room's look command
This commit is contained in:
parent
0ced5287f4
commit
9756314e3d
1 changed files with 1 additions and 1 deletions
|
|
@ -246,7 +246,7 @@ class CmdExtendedLook(default_cmds.CmdLook):
|
|||
return
|
||||
else:
|
||||
# we need to extract the match manually.
|
||||
looking_at_obj = looking_at_obj[0]
|
||||
looking_at_obj = utils.make_iter(looking_at_obj)[0]
|
||||
else:
|
||||
looking_at_obj = caller.location
|
||||
if not looking_at_obj:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue