mirror of
https://github.com/evennia/evennia.git
synced 2026-03-21 23:36:30 +01:00
Removed global search for setting @aliases. Resolves Issue 264.
This commit is contained in:
parent
56c28f7e44
commit
14cc2e0f97
1 changed files with 1 additions and 1 deletions
|
|
@ -118,7 +118,7 @@ class CmdSetObjAlias(MuxCommand):
|
|||
objname = self.lhs
|
||||
|
||||
# Find the object to receive aliases
|
||||
obj = caller.search(objname, global_search=True)
|
||||
obj = caller.search(objname)
|
||||
if not obj:
|
||||
return
|
||||
if self.rhs == None:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue