diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-06-25 07:06:23 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-06-25 07:06:23 -0300 |
commit | 7099c8b0ee8c49e97be934e28c05969cbf7301bf (patch) | |
tree | d686309c22fc92d23cd5aa2370fe40a60e51742c | |
parent | c57d1e9edcdad2141dc2ead4a936f78d3b4ce9bb (diff) | |
download | serverdata-7099c8b0ee8c49e97be934e28c05969cbf7301bf.tar.gz serverdata-7099c8b0ee8c49e97be934e28c05969cbf7301bf.tar.bz2 serverdata-7099c8b0ee8c49e97be934e28c05969cbf7301bf.tar.xz serverdata-7099c8b0ee8c49e97be934e28c05969cbf7301bf.zip |
Fixes to get skill name (might be wrong field)
-rw-r--r-- | db/re/skill_db.conf | 4 | ||||
-rw-r--r-- | npc/functions/util.txt | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/db/re/skill_db.conf b/db/re/skill_db.conf index e48af9a0b..49feb297a 100644 --- a/db/re/skill_db.conf +++ b/db/re/skill_db.conf @@ -1817,7 +1817,7 @@ skill_db: ( { Id: 44 Name: "AC_VULTURE" - Description: "Vulture's Eye" + Description: "Archer's Eye" MaxLevel: 1 NumberOfHits: 0 SkillInfo: { @@ -19487,7 +19487,7 @@ skill_db: ( { Id: 2023 Name: "GC_DARKILLUSION" - Description: "Dark Illusion" + Description: "Sudden Attack" MaxLevel: 5 Range: { Lv1: 5 diff --git a/npc/functions/util.txt b/npc/functions/util.txt index 8c3e449a5..98286a69c 100644 --- a/npc/functions/util.txt +++ b/npc/functions/util.txt @@ -783,7 +783,7 @@ function script learn_magic { .@learn$=l("Upgrading"); } - mesc l("%s %s will require:", .@learn$, str(.@ski)); + mesc l("%s %s will require:", .@learn$, getskillname(.@ski)); mes l("* %d/%d MSP (Magic Skill Points)", .@msp, sk_points()); //mes l("* %d/%d AP (???)", .@ap, MAGIC_AP); mes l("% %d/%d %s", .@am, countitem(.@it), getitemlink(.@it)); |