mirror of
https://github.com/evennia/evennia.git
synced 2026-04-01 13:37:17 +02:00
Fixed bug that made ooc look give an error. Resolves #921.
This commit is contained in:
parent
039bb0c540
commit
86b6261b02
1 changed files with 3 additions and 1 deletions
|
|
@ -800,7 +800,9 @@ class DefaultPlayer(with_metaclass(TypeclassBase, PlayerDB)):
|
|||
|
||||
if target and not is_iter(target):
|
||||
# single target - just show it
|
||||
return target.return_appearance()
|
||||
return target.return_appearance(self)
|
||||
elif not target:
|
||||
return "|rNo such character.|n"
|
||||
else:
|
||||
# list of targets - make list to disconnect from db
|
||||
characters = list(target)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue