From b6a3ec493c947cabb667a159dc1e9d7587cf9b5b Mon Sep 17 00:00:00 2001 From: Ari Johnson Date: Tue, 20 Feb 2007 19:59:11 +0000 Subject: [PATCH] Missed one change to make garbage not have a modified time --- src/fundb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fundb.c b/src/fundb.c index 56b8638..09f61ef 100644 --- a/src/fundb.c +++ b/src/fundb.c @@ -1205,7 +1205,7 @@ FUNCTION(fun_ctime) FUNCTION(fun_mtime) { dbref it = match_thing(executor, args[0]); - if (!GoodObject(it)) + if (!GoodObject(it) || IsGarbage(it)) safe_str(T(e_notvis), buff, bp); else if (!Can_Examine(executor, it) || IsPlayer(it)) safe_str(T(e_perm), buff, bp); -- 2.30.2