From: Ari Johnson Date: Tue, 20 Feb 2007 19:59:11 +0000 (+0000) Subject: Missed one change to make garbage not have a modified time X-Git-Tag: 0.73~177 X-Git-Url: https://git.theari.com/?a=commitdiff_plain;h=b6a3ec493c947cabb667a159dc1e9d7587cf9b5b;p=cobramush.git Missed one change to make garbage not have a modified time --- 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);