diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-02-04 12:32:40 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-02-04 12:32:40 -0300 |
commit | 6e2389267268f146a8c8c697336da669240e66ad (patch) | |
tree | 6ac5094d999d13de922de258f96ae6e870854428 /npc/functions | |
parent | 4fdaf4196fa186c4ec29496dae36f7ba0db4b10c (diff) | |
download | serverdata-6e2389267268f146a8c8c697336da669240e66ad.tar.gz serverdata-6e2389267268f146a8c8c697336da669240e66ad.tar.bz2 serverdata-6e2389267268f146a8c8c697336da669240e66ad.tar.xz serverdata-6e2389267268f146a8c8c697336da669240e66ad.zip |
It complains about case >.>
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/hub.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/functions/hub.txt b/npc/functions/hub.txt index 6569e3c75..e49312f31 100644 --- a/npc/functions/hub.txt +++ b/npc/functions/hub.txt @@ -15,11 +15,11 @@ function script HUB_Login { } // Random Treasure cleaning - if (CLEANUP < gettimetick(2)-CHEST_WAITTIME) + if (CHAREG_CLEANUP < gettimetick(2)-CHEST_WAITTIME) deletearray RNGTREASURE_DATE; // PVP Cooldown cleaning - if (CLEANUP < gettimetick(2)-PVP_WAITTIME) + if (CHAREG_CLEANUP < gettimetick(2)-PVP_WAITTIME) deletearray PVP_COOLDOWN; return; @@ -179,7 +179,7 @@ function script HUB_Logout { // Register logout time if (!.@dead) - CLEANUP=gettimetick(2); + CHAREG_CLEANUP=gettimetick(2); return; } |