diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-11-03 11:15:42 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-11-03 11:15:42 -0300 |
commit | 901a59eecedbba7d9982217f820478cbb9c9921f (patch) | |
tree | 238835bf17cfc2de63787eec8ce60652a273b1c5 /npc/functions | |
parent | b31adfb09139d66397bc1dfe99ffc06d8a892026 (diff) | |
download | serverdata-901a59eecedbba7d9982217f820478cbb9c9921f.tar.gz serverdata-901a59eecedbba7d9982217f820478cbb9c9921f.tar.bz2 serverdata-901a59eecedbba7d9982217f820478cbb9c9921f.tar.xz serverdata-901a59eecedbba7d9982217f820478cbb9c9921f.zip |
Revert "Allow Aurora Events to happen during Thanksgiving."
This reverts commit 66e86c7b06ac24b0b7c1f14629ed8eebaba25521.
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/event.txt | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/npc/functions/event.txt b/npc/functions/event.txt index 8093d053f..1de8d7ef0 100644 --- a/npc/functions/event.txt +++ b/npc/functions/event.txt @@ -370,14 +370,10 @@ OnClock0000: // XXX: Now it inhibits by itself; But it should NOT begin a FYE if // another (annual) event is scheduled for the same week. // Namely: TMW2 Day and Thanksgiving - //debugmes "%d >= %d && %d <= %d", .@val, .@d-6, .@val, .@d+6; + debugmes "%d >= %d && %d <= %d", .@val, .@d-6, .@val, .@d+6; // In this case there's already an event! // .@d == .@val <= .@d+6 AND if ( .@val >= .@d-6 && .@val <= .@d+6 ) { - // Keep events running during Thanksgiving (November) - if (.@m == NOVEMBER) - break; - // Otherwise: No aurora event! .@dofy=false; break; } |