diff options
-rw-r--r-- | npc/functions/seasons.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/npc/functions/seasons.txt b/npc/functions/seasons.txt index a93cc78f9..e29c64146 100644 --- a/npc/functions/seasons.txt +++ b/npc/functions/seasons.txt @@ -49,7 +49,14 @@ function script SeasonControl { } while (@menu != 3); return; } + +// If skip_checks is set, it'll ignore $@SEASON control. +// SeasonReload( {skip_checks} ) function script SeasonReload { + // Proccess skip_checks + if (getarg(0,0)) + $@SEASON=99; + // Summer extra drops if (season() == SUMMER && $@SEASON != SUMMER) { donpcevent("#SeasonCore::OnSummerStart"); |