diff options
-rw-r--r-- | npc/001-11/event_soulmenhir.txt | 1 | ||||
-rw-r--r-- | npc/functions/clientversion.txt | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/npc/001-11/event_soulmenhir.txt b/npc/001-11/event_soulmenhir.txt index ebb9773da..a694eda7b 100644 --- a/npc/001-11/event_soulmenhir.txt +++ b/npc/001-11/event_soulmenhir.txt @@ -20,6 +20,7 @@ L_Warp: close; // Done for multiple players +// FIXME This obviously will not work L_WarpMirror: .@u=getusers(1); mesn; diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt index 2f6dd0f03..7a467cce7 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -721,7 +721,7 @@ function script clientupdater { // Non Permament Level Boost if (#ADD_TMP_LVL) { // Grant the level - if (numdate() <= 20200216) { + if (numdate() <= 20200216 && !#SAVED_LVL) { #SAVED_LVL=BaseLevel; BaseLevel=#ADD_TMP_LVL; dispbottom l("Level set from %d to %d", #SAVED_LVL, BaseLevel); |