diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-03-16 13:32:30 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-03-16 13:32:30 -0300 |
commit | 110f6d94c84063acbb1b059bbeb2789024750284 (patch) | |
tree | 0fb2569ade3d8a57253bb808e18b1a151dba7f03 /npc/items/rand_sc_heal.txt | |
parent | 979271d36b75246153096f648b1946da9b7397be (diff) | |
download | serverdata-110f6d94c84063acbb1b059bbeb2789024750284.tar.gz serverdata-110f6d94c84063acbb1b059bbeb2789024750284.tar.bz2 serverdata-110f6d94c84063acbb1b059bbeb2789024750284.tar.xz serverdata-110f6d94c84063acbb1b059bbeb2789024750284.zip |
"fixes"
Diffstat (limited to 'npc/items/rand_sc_heal.txt')
-rw-r--r-- | npc/items/rand_sc_heal.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/items/rand_sc_heal.txt b/npc/items/rand_sc_heal.txt index 046b38e1c..bc3d870fe 100644 --- a/npc/items/rand_sc_heal.txt +++ b/npc/items/rand_sc_heal.txt @@ -38,7 +38,7 @@ } else { - @val3 = @val1; + @val1 = @val3; } return; } @@ -50,9 +50,9 @@ OnUse: .@vitality_bonus = min(@min, readparam(bVit) * BaseLevel / 20); .@rand_heal_val = rand(@min, @max); - // val3 is the heal value without the vitality bonus - @val3 = .@rand_heal_val / @delay; + // val1 used to be the heal value without the vitality bonus @val1 = (.@rand_heal_val + .@vitality_bonus) / @delay; + @val3 = (.@rand_heal_val + .@vitality_bonus) / @delay; if (@val3 <= 0) close; |