summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
Diffstat (limited to 'npc')
-rw-r--r--npc/functions/seasons.txt10
1 files changed, 7 insertions, 3 deletions
diff --git a/npc/functions/seasons.txt b/npc/functions/seasons.txt
index f7812eba9..812e46553 100644
--- a/npc/functions/seasons.txt
+++ b/npc/functions/seasons.txt
@@ -126,6 +126,8 @@ function script SeasonControl {
"Autumn End",
"Winter Start",
"Winter End",
+ "Spring Start",
+ "Spring End",
"SPECIAL - Christmas",
"SPECIAL - Valentine",
"Abort";
@@ -137,10 +139,12 @@ function script SeasonControl {
case 4: donpcevent("#SeasonCore::OnAutumnEnd"); break;
case 5: donpcevent("#SeasonCore::OnWinterStart"); break;
case 6: donpcevent("#SeasonCore::OnWinterEnd"); break;
- case 7: sChristmas(); break;
- case 8: sValentine(); break;
+ case 7: donpcevent("#SeasonCore::OnSpringStart"); break;
+ case 8: donpcevent("#SeasonCore::OnSpringEnd"); break;
+ case 9: sChristmas(); break;
+ case 10: sValentine(); break;
}
- } while (@menu != 9);
+ } while (@menu != 11);
return;
}