summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/functions/seasons.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/seasons.txt b/npc/functions/seasons.txt
index 51fee458f..2d82b5c79 100644
--- a/npc/functions/seasons.txt
+++ b/npc/functions/seasons.txt
@@ -14,10 +14,10 @@
// AUTUMN: Autumn, 22/09
function script season {
- .@current_month = getarg(0, gettime(GETTIME_MONTH));
+ .@current_month = getarg(1, gettime(GETTIME_MONTH));
if (.@current_month % 3 == 0) {
- .@current_day = getarg(1, gettime(GETTIME_DAYOFMONTH));
+ .@current_day = getarg(0, gettime(GETTIME_DAYOFMONTH));
switch (.@current_month) {
case MARCH: .@season_day = 20; break;