diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-06-15 21:27:08 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-06-15 21:27:08 -0300 |
commit | eb0c0e5dcfee3128be3f25ee8915a87707732883 (patch) | |
tree | 8e49d0c76fb6a8beb72a9befda2da1565a63865c /npc/magic/config.txt | |
parent | 6e13d248efde3e86ba4a45a43a6681777550ef6b (diff) | |
download | serverdata-eb0c0e5dcfee3128be3f25ee8915a87707732883.tar.gz serverdata-eb0c0e5dcfee3128be3f25ee8915a87707732883.tar.bz2 serverdata-eb0c0e5dcfee3128be3f25ee8915a87707732883.tar.xz serverdata-eb0c0e5dcfee3128be3f25ee8915a87707732883.zip |
Fix a few typos, like always reporting the wrong number of items left on mcharge.
And a missing skill on skill tree.
Diffstat (limited to 'npc/magic/config.txt')
-rw-r--r-- | npc/magic/config.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/magic/config.txt b/npc/magic/config.txt index 2a6a9559..e55833bc 100644 --- a/npc/magic/config.txt +++ b/npc/magic/config.txt @@ -395,7 +395,7 @@ function script mcharge { // Low supply warning if (countitem(.@it) <= 3) dispbottom col(b(l("Warning, %d remaining: %s", - 3, getitemname(.@it))), 1); + countitem(.@it), getitemname(.@it))), 1); } @MCHARGE[@skillId]-=1; return; |