diff options
Diffstat (limited to 'npc/functions/util.txt')
-rw-r--r-- | npc/functions/util.txt | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/npc/functions/util.txt b/npc/functions/util.txt index 5afbdbce1..1966ce6df 100644 --- a/npc/functions/util.txt +++ b/npc/functions/util.txt @@ -1147,8 +1147,13 @@ function script numdate { // Same as numdate() but SQL format. // sqldate({day variation}) function script sqldate { - .@d=getarg(0, 0); - .@strdate$=sprintf("%04d-%02d-%02d %02d:%02d:%02d", gettime(GETTIME_YEAR), gettime(GETTIME_MONTH), gettime(GETTIME_DAYOFMONTH)+.@d, gettime(GETTIME_HOUR), gettime(GETTIME_MINUTE), gettime(GETTIME_SECOND)); + .@d=gettime(GETTIME_DAYOFMONTH)+getarg(0, 0); + .@m=gettime(GETTIME_MONTH); + // Overflow prevention + if (.@d <= 0) { + .@d=1; + } + .@strdate$=sprintf("%04d-%02d-%02d %02d:%02d:%02d", gettime(GETTIME_YEAR), .@m, .@d, gettime(GETTIME_HOUR), gettime(GETTIME_MINUTE), gettime(GETTIME_SECOND)); return .@strdate$; } |