summaryrefslogtreecommitdiff
path: root/npc/functions/seasons.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions/seasons.txt')
-rw-r--r--npc/functions/seasons.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/npc/functions/seasons.txt b/npc/functions/seasons.txt
index 980fcaafd..d2ed85264 100644
--- a/npc/functions/seasons.txt
+++ b/npc/functions/seasons.txt
@@ -134,6 +134,8 @@ function script SeasonControl {
"Spring End",
"SPECIAL - Christmas",
"SPECIAL - Valentine",
+ "FORCED DAYLIGHT",
+ "FORCED NIGHTTIME",
"Abort";
switch (@menu) {
@@ -147,8 +149,10 @@ function script SeasonControl {
case 8: donpcevent("#SeasonCore::OnSpringEnd"); break;
case 9: sChristmas(); break;
case 10: sValentine(); break;
+ case 11: $@WEATHER_NIGHT=false; doevent("#WeatherCore::OnMinute45"); break;
+ case 12: $@WEATHER_NIGHT=true; doevent("#WeatherCore::OnMinute45"); break;
}
- } while (@menu != 11);
+ } while (@menu != 13);
return;
}