From 14cc2e0f97f1effcd30ca901a1519094db91081a Mon Sep 17 00:00:00 2001 From: Griatch Date: Thu, 27 Sep 2012 22:23:05 +0200 Subject: [PATCH] Removed global search for setting @aliases. Resolves Issue 264. --- src/commands/default/building.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/default/building.py b/src/commands/default/building.py index b76199d14f..04d38e9dff 100644 --- a/src/commands/default/building.py +++ b/src/commands/default/building.py @@ -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: