Missed one change to make garbage not have a modified time
authorAri Johnson <ari@cobramush.org>
Tue, 20 Feb 2007 19:59:11 +0000 (19:59 +0000)
committerAri Johnson <ari@cobramush.org>
Tue, 20 Feb 2007 19:59:11 +0000 (19:59 +0000)
src/fundb.c

index 56b86383e026fec1027dcf8effa76dd07a1a6456..09f61effb407c55ab47333c5337847d16dd72c93 100644 (file)
@@ -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);