diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-05-19 19:00:05 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-05-19 19:00:05 -0300 |
commit | 4196c9f78f2e05ae832bc4be7d3b3c9b2b01f113 (patch) | |
tree | bdaec893e42793f3d38bf8a8b9071234dc900a84 /npc/items/rand_sc_heal.txt | |
parent | f92b2d13b09cc87736b15a878f2d0255f7474433 (diff) | |
download | serverdata-4196c9f78f2e05ae832bc4be7d3b3c9b2b01f113.tar.gz serverdata-4196c9f78f2e05ae832bc4be7d3b3c9b2b01f113.tar.bz2 serverdata-4196c9f78f2e05ae832bc4be7d3b3c9b2b01f113.tar.xz serverdata-4196c9f78f2e05ae832bc4be7d3b3c9b2b01f113.zip |
Fix more bugs on healing items
Diffstat (limited to 'npc/items/rand_sc_heal.txt')
-rw-r--r-- | npc/items/rand_sc_heal.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/items/rand_sc_heal.txt b/npc/items/rand_sc_heal.txt index 1bf582444..41ea3b3a7 100644 --- a/npc/items/rand_sc_heal.txt +++ b/npc/items/rand_sc_heal.txt @@ -57,7 +57,7 @@ function script ItHeal2 { @val1 = rand2(.@min, .@max); // Calculate delay if it was not given - if (.@delay < 0) { + if (.@delay <= 0) { .@delay=1 + ((.@type*3)/2); } |