Fixed issue where searching for 'me' did not return typeclassed object.
This commit is contained in:
parent
e6067c873c
commit
c3f86ab45b
1 changed files with 1 additions and 1 deletions
|
|
@ -606,7 +606,7 @@ class ObjectDB(TypedObject):
|
||||||
if searchdata == _HERE:
|
if searchdata == _HERE:
|
||||||
return self.location
|
return self.location
|
||||||
if searchdata in (_ME, _SELF):
|
if searchdata in (_ME, _SELF):
|
||||||
return self
|
return self.typeclass
|
||||||
|
|
||||||
if use_nicks:
|
if use_nicks:
|
||||||
nick = None
|
nick = None
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue