diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/020-1/serge.txt | 3 | ||||
-rw-r--r-- | npc/commands/event.txt | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/npc/020-1/serge.txt b/npc/020-1/serge.txt index ae0f4bae5..6b7ccc97c 100644 --- a/npc/020-1/serge.txt +++ b/npc/020-1/serge.txt @@ -33,7 +33,8 @@ L_QuestDisabled: mesn; mesq l("Merry Christmas!"); mesc l("The @@ quest is disabled during Christmas event.", getitemlink(KnitHat)); - close; + next; + goto L_Main; L_WinterQuest: next; diff --git a/npc/commands/event.txt b/npc/commands/event.txt index 942e8dd4f..ae49634b7 100644 --- a/npc/commands/event.txt +++ b/npc/commands/event.txt @@ -27,7 +27,7 @@ function script sChristmas { addmonsterdrop(WaterFairy, GingerBreadMan, 1000); if (gettime(GETTIME_MONTH) == DECEMBER) { - if (gettime(GETTIME_DAY) <= 26) + if (gettime(GETTIME_DAYOFMONTH) <= 26) .@m=10; else .@m=8; |