Removed global search for setting @aliases. Resolves Issue 264.

This commit is contained in:
Griatch 2012-09-27 22:23:05 +02:00
parent 56c28f7e44
commit 14cc2e0f97

View file

@ -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: