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 | |
parent | 751ceff3cb0a39ffb6ddd8113d41d04cc40054b6 (diff) | |
download | serverdata-d8ce58ffdbe36bc5256df1416fe1aab005f11690.tar.gz serverdata-d8ce58ffdbe36bc5256df1416fe1aab005f11690.tar.bz2 serverdata-d8ce58ffdbe36bc5256df1416fe1aab005f11690.tar.xz serverdata-d8ce58ffdbe36bc5256df1416fe1aab005f11690.zip |
Minor fixes
-rw-r--r-- | db/re/item_db.conf | 4 | ||||
-rw-r--r-- | npc/items/legacy_heal.txt | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf index b10c146c9..a8d1ad700 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -11724,8 +11724,8 @@ item_db: ( }, { Id: 5029 - AegisName: "NaturalCard" - Name: "Natural Card" + AegisName: "NatureCard" + Name: "Nature Card" Type: "IT_CARD" Buy: 50 Sell: 25 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 |