diff options
-rw-r--r-- | npc/functions/clientversion.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt index 7a467cce7..e119d102f 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -739,13 +739,13 @@ function script clientupdater { mesc l("Be careful during night, use \"@tutorial\" in case of doubt, use \"%s\" to go to the event, and good luck!", b("@toevent")), 3; next; // Restore the level - } else if (#SAVED_LVL) { + } else if (numdate() > 20200216 && #SAVED_LVL) { dispbottom l("Level reset from %d to %d", BaseLevel, #SAVED_LVL); BaseLevel=#SAVED_LVL; #SAVED_LVL=0; #ADD_TMP_LVL=0; // Player too late for event! - } else { + } else if (numdate() > 20200216) { dispbottom l("This event has already ended."); #ADD_TMP_LVL=0; } |