diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-02-22 16:08:33 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-02-22 16:08:33 -0300 |
commit | a45799c7f28a75e1b4c5639dab81e0fcb6f158b7 (patch) | |
tree | 776d4cde21489065e228a613aa33fc8d2f8f4951 | |
parent | 8eec8848cf9334a4d5864e6393c689ec6e727730 (diff) | |
download | serverdata-a45799c7f28a75e1b4c5639dab81e0fcb6f158b7.tar.gz serverdata-a45799c7f28a75e1b4c5639dab81e0fcb6f158b7.tar.bz2 serverdata-a45799c7f28a75e1b4c5639dab81e0fcb6f158b7.tar.xz serverdata-a45799c7f28a75e1b4c5639dab81e0fcb6f158b7.zip |
More debug markers. Seems broken indeed
-rw-r--r-- | npc/functions/seasons.txt | 6 |
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; } |