From 8eefc5d9f9c96f78199dc471529080155c91d380 Mon Sep 17 00:00:00 2001 From: Griatch Date: Fri, 1 Feb 2013 20:00:17 +0100 Subject: [PATCH] Fixed a bug in @del dbref lookup. --- 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 95b1bf9af..7ed8872f2 100644 --- a/src/commands/default/building.py +++ b/src/commands/default/building.py @@ -579,7 +579,7 @@ class CmdDestroy(MuxCommand): else: string += delobj(objname) else: - string += delobj(objname) + string += delobj(objname, True) if string: caller.msg(string.strip())