diff options
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/seasons.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/npc/functions/seasons.txt b/npc/functions/seasons.txt index 5c3235848..0e269f6ac 100644 --- a/npc/functions/seasons.txt +++ b/npc/functions/seasons.txt @@ -44,6 +44,7 @@ function script SeasonControl { "Autumn End", "Winter Start", "Winter End", + "SPECIAL: Christmas", "Abort"; switch (@menu) { @@ -53,8 +54,9 @@ 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; } - } while (@menu != 5); + } while (@menu != 8); return; } |