diff options
author | Freeyorp <TheFreeYorp+github@gmail.com> | 2019-01-27 17:38:04 +1300 |
---|---|---|
committer | Freeyorp <TheFreeYorp+github@gmail.com> | 2019-01-27 17:38:04 +1300 |
commit | 355209ef2833f4548fe7e8e999827ebbf2e1a3a7 (patch) | |
tree | 4d78312e932341d7afb71dd63ddd57a18cc147e2 | |
parent | 777e1df88307d3b19c6cdeda8ed833705dc3a059 (diff) | |
download | serverdata-355209ef2833f4548fe7e8e999827ebbf2e1a3a7.tar.gz serverdata-355209ef2833f4548fe7e8e999827ebbf2e1a3a7.tar.bz2 serverdata-355209ef2833f4548fe7e8e999827ebbf2e1a3a7.tar.xz serverdata-355209ef2833f4548fe7e8e999827ebbf2e1a3a7.zip |
Don't clear fluffy hunt highscore entries
(17:28:01) <gumi> it might have been intentional at some point in the past but definitely not now
-rw-r--r-- | world/map/npc/functions/clear_vars.txt | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/world/map/npc/functions/clear_vars.txt b/world/map/npc/functions/clear_vars.txt index e0cab888..fe937d94 100644 --- a/world/map/npc/functions/clear_vars.txt +++ b/world/map/npc/functions/clear_vars.txt @@ -402,22 +402,6 @@ L_Deprecated: function|script|ClearGlobalVars { -// Clear some entries of the arrays which save the Fluffy Hunting highscore list - set $@loop, 5; - goto L_FluffyClear; - -L_FluffyClear: - if ($@loop == 12) - goto L_IlliaClear; - - set $Record_Fluffy_Name$[$@loop], ""; - set $Record_Fluffy_Date$[$@loop], ""; - set $Record_Fluffy_Kills[$@loop], 0; - - set $@loop, $@loop + 1; - goto L_FluffyClear; - - // Clear the array which saves the teams who beat the Illia quest L_IlliaClear: set $@loop, 0; |