summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/functions/time.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/time.txt b/npc/functions/time.txt
index f54973dde..a7f344123 100644
--- a/npc/functions/time.txt
+++ b/npc/functions/time.txt
@@ -22,11 +22,11 @@ function script santime {
return .@val;
}
-// Grace period when santime is reset: 1 month
+// Grace period when santime is reset: 3 months
// gcsantime( time )
function script gcsantime {
.@m=(60*60*24*30);
- if (santime() < .@m && getarg(0) > .@m*5)
+ if (santime() < .@m*3 && getarg(0) > .@m*5)
return 1;
return 0;
}