diff options
author | Jesusaves <cpntb1@ymail.com> | 2023-10-26 19:09:21 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2023-10-26 19:09:21 -0300 |
commit | 6cd14661a4db407eb2f468349d7d4a2035858b95 (patch) | |
tree | bde61c2533c2f2dce48e06c913be40ace1ced0d4 /npc | |
parent | 3303f96c1af6b1abfaf2761a4225b552f76ce902 (diff) | |
download | serverdata-6cd14661a4db407eb2f468349d7d4a2035858b95.tar.gz serverdata-6cd14661a4db407eb2f468349d7d4a2035858b95.tar.bz2 serverdata-6cd14661a4db407eb2f468349d7d4a2035858b95.tar.xz serverdata-6cd14661a4db407eb2f468349d7d4a2035858b95.zip |
Hardcore servers should honor SuperMMO maps (Fortress) as if they were MMO maps.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/hub.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/functions/hub.txt b/npc/functions/hub.txt index 19e27fdf6..4285b1b97 100644 --- a/npc/functions/hub.txt +++ b/npc/functions/hub.txt @@ -113,7 +113,7 @@ function script HUB_Logout { if (@grace) { // Grace is upon you (ie. script death) @grace=false; - } else if (.@zone$ == "MMO" && ABSOLVE_CNT <= 3) { + } else if ((.@zone$ == "MMO" || .@zone$ == "SuperMMO") && ABSOLVE_CNT <= 3) { // Absolve (limited attempts) ABSOLVE_CNT+=1; dispbottom l("This is a special map so your death is not counted."); |