From 5a2b9e27a09f58906578cc4246760e44e8328dff Mon Sep 17 00:00:00 2001 From: Griatch Date: Fri, 9 Sep 2011 23:58:51 +0200 Subject: [PATCH] Resolves issue 187. --- src/commands/default/building.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/default/building.py b/src/commands/default/building.py index fba1cd9821..753ce91d15 100644 --- a/src/commands/default/building.py +++ b/src/commands/default/building.py @@ -928,9 +928,9 @@ class CmdHome(CmdLink): old_home = obj.home obj.home = new_home if old_home: - string = "%s's home location was changed from %s(%s) to %s(%s)." % (old_home, old_home.dbref, new_home, new_home.dbref) + string = "%s's home location was changed from %s(%s) to %s(%s)." % (obj, old_home, old_home.dbref, new_home, new_home.dbref) else: - string = "%s' home location was set to %s(%s)." % (new_home, new_home.dbref) + string = "%s' home location was set to %s(%s)." % (obj, new_home, new_home.dbref) self.caller.msg(string) class CmdListCmdSets(MuxCommand):