diff options
-rw-r--r-- | npc/012-1/guards.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/012-1/guards.txt b/npc/012-1/guards.txt index a0eb38b4a..0b52a3ee7 100644 --- a/npc/012-1/guards.txt +++ b/npc/012-1/guards.txt @@ -497,10 +497,10 @@ OnVictory: bg_destroy(1); bg_destroy(2); // Auto-schedule Liberation Day - // two weeks from now, to happen on a saturday + // a month from now, to happen on a saturday .@offset = gettime(GETTIME_WEEKDAY); // How long since sunday? .@offset += 1; // Move it to Saturday - .@offset += 14; // Add a couple weeks + .@offset += 30; // Add a month .@offset += gettimeparam(GETTIME_DAYOFMONTH); // Apply offset to the all days $NLIB_SEQDAY = .@offset; // Schedule the event |