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 /npc | |
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)
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/util.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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)); |