diff options
-rw-r--r-- | npc/functions/clientversion.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt index b95ff58a0..8b128d772 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -985,6 +985,20 @@ function script clientupdater { dispbottom l("Invalid recipe from Nahrec partly reimbursed."); } } + // Christmas Warp bug + // seg dez 28 20:45:55 BRT 2020 + if (UPDATE < 1609199155) { + UPDATE=1609199155; + if (BaseLevel < 20) { + if (getsavepoint(0) != "000-1" && + getsavepoint(0) != "003-1" && + getsavepoint(0) != "005-1") { + // Resave at Candor + EnterTown("Candor"); + ReturnTown(); + } + } + } // :// End of Regular Update System //////////////////////////////////// |