diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-07-14 23:15:44 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-07-14 23:15:44 -0300 |
commit | d8ce58ffdbe36bc5256df1416fe1aab005f11690 (patch) | |
tree | 74f9a8cada788ded447eb9c70df2f40cee9b90c6 /npc | |
parent | 751ceff3cb0a39ffb6ddd8113d41d04cc40054b6 (diff) | |
download | serverdata-d8ce58ffdbe36bc5256df1416fe1aab005f11690.tar.gz serverdata-d8ce58ffdbe36bc5256df1416fe1aab005f11690.tar.bz2 serverdata-d8ce58ffdbe36bc5256df1416fe1aab005f11690.tar.xz serverdata-d8ce58ffdbe36bc5256df1416fe1aab005f11690.zip |
Minor fixes
Diffstat (limited to 'npc')
-rw-r--r-- | npc/items/legacy_heal.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/items/legacy_heal.txt b/npc/items/legacy_heal.txt index 62b501668..c2e1693a9 100644 --- a/npc/items/legacy_heal.txt +++ b/npc/items/legacy_heal.txt @@ -28,7 +28,7 @@ OnUse: // minimum between @min and bVit / 2 * BaseLevel / 10 @min = min(@max, readparam(bVit) * BaseLevel / 20); - @val1 = rand(@min, @max); + @val1 = rand2(@min, @max); @delay *= 1000; // Put the delay in ms |