diff options
-rw-r--r-- | npc/019-2/guards.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/npc/019-2/guards.txt b/npc/019-2/guards.txt index d60aa3803..e14478af2 100644 --- a/npc/019-2/guards.txt +++ b/npc/019-2/guards.txt @@ -19,14 +19,16 @@ if (BaseLevel < 30) goto L_Noob; if (BaseLevel >= 30) goto L_Veteran; close; - } else if (is_gm()) { // NOTE: This is an override label + } else if (is_admin()) { // NOTE: This is an override label mesc "Initiate Nivalis Liberation Day?", 1; mesc "Event will last 7 days.", 1; + mesc "The event is currently set to happen in roughly: " + FuzzyTime($NLIB_SEQDAY*86400); select "Not yet.", "Yes", "No"; if (@menu == 2) { + closeclientdialog; goto OnNLibStart; } close; |