diff options
-rw-r--r-- | npc/functions/aurora.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/npc/functions/aurora.txt b/npc/functions/aurora.txt index 3095b333b..8d26cdfb8 100644 --- a/npc/functions/aurora.txt +++ b/npc/functions/aurora.txt @@ -27,9 +27,14 @@ // AEF: BEGIN function script FYNewEvent { debugmes "\033[1mFY event is set to happen..."; + // Aurora Events only begin after Liberation Day + if ($GAME_STORYLINE < 1) + return; + // Update the loop $FYEVENT_CYCLE+=1; // Overrides standard event system $EVENT$=""; + // Select the event switch ($FYEVENT_CYCLE % 12) { case 1: $EVENT$="Kamelot"; |