summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
Diffstat (limited to 'npc')
-rw-r--r--npc/functions/util.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/functions/util.txt b/npc/functions/util.txt
index 389a764ac..703e167a5 100644
--- a/npc/functions/util.txt
+++ b/npc/functions/util.txt
@@ -800,7 +800,7 @@ function script gettimeparam {
return .@t;
// Weeks (estimative)
- .@a=.@t+3; // 01/01/1970 was a Thursday. So this will make it float at sunday.
+ .@a=.@t+4; // 01/01/1970 was a Thursday. So this will make it float at sunday.
.@a=.@a/7;
if (.@p == GETTIME_WEEKDAY)
return .@a;