mirror of
https://github.com/evennia/evennia.git
synced 2026-03-31 04:57:16 +02:00
Fixed player.search() to also move here/me/self wrappers to typeclass.
This commit is contained in:
parent
661eb0c23b
commit
59513e5c00
4 changed files with 36 additions and 28 deletions
|
|
@ -297,7 +297,7 @@ class Object(TypeClass):
|
|||
# searchdata is a string; wrap some common self-references
|
||||
if searchdata.lower() in ("me", "self",):
|
||||
return self.player
|
||||
self.dbobj.search_player(searchdata, quiet=quiet)
|
||||
return self.dbobj.search_player(searchdata, quiet=quiet)
|
||||
|
||||
def execute_cmd(self, raw_string, sessid=None):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue