diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-05-04 15:13:43 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-05-04 15:13:43 -0300 |
commit | ff5c300b47661539218bc41084f403ab1892a0a1 (patch) | |
tree | ebb7a2f6cf55851bdfd453e09a0ca20e9c918d59 /npc | |
parent | 3453ca7b8f837c99e22544d07b2d43343675f141 (diff) | |
download | serverdata-ff5c300b47661539218bc41084f403ab1892a0a1.tar.gz serverdata-ff5c300b47661539218bc41084f403ab1892a0a1.tar.bz2 serverdata-ff5c300b47661539218bc41084f403ab1892a0a1.tar.xz serverdata-ff5c300b47661539218bc41084f403ab1892a0a1.zip |
s/Tentacle/Tentacles bugfix
Diffstat (limited to 'npc')
-rw-r--r-- | npc/003-0/wizard.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/003-0/wizard.txt b/npc/003-0/wizard.txt index 763728534..60a6b2fc8 100644 --- a/npc/003-0/wizard.txt +++ b/npc/003-0/wizard.txt @@ -72,19 +72,19 @@ L_Member: mes ""; mesn; mesq l("This useful skill will only require:"); - mesc l("@@/@@ @@", countitem(Tentacle), (getskilllv(MG_ENERGYCOAT)+1)*10, getitemlink(Tentacle)); + mesc l("@@/@@ @@", countitem(Tentacles), (getskilllv(MG_ENERGYCOAT)+1)*10, getitemlink(Tentacles)); mesc l("@@/@@ @@", countitem(MushroomSpores), (getskilllv(MG_ENERGYCOAT)+1)*5, getitemlink(MushroomSpores)); mesc l("@@/@@ @@", countitem(WolvernTooth), (getskilllv(MG_ENERGYCOAT)+1)*3, getitemlink(WolvernTooth)); mesc l("@@/@@ @@", countitem(RedScorpionClaw), (getskilllv(MG_ENERGYCOAT)+1)*1, getitemlink(RedScorpionClaw)); next; if (askyesno() == ASK_YES) { if ( - countitem(Tentacle) < (getskilllv(MG_ENERGYCOAT)+1)*10 || + countitem(Tentacles) < (getskilllv(MG_ENERGYCOAT)+1)*10 || countitem(MushroomSpores) < (getskilllv(MG_ENERGYCOAT)+1)*5 || countitem(WolvernTooth) < (getskilllv(MG_ENERGYCOAT)+1)*3 || countitem(RedScorpionClaw) < (getskilllv(MG_ENERGYCOAT)+1)*1) goto L_Missing; - delitem Tentacle, (getskilllv(MG_ENERGYCOAT)+1)*10; + delitem Tentacles, (getskilllv(MG_ENERGYCOAT)+1)*10; delitem MushroomSpores, (getskilllv(MG_ENERGYCOAT)+1)*5; delitem WolvernTooth, (getskilllv(MG_ENERGYCOAT)+1)*3; delitem RedScorpionClaw, (getskilllv(MG_ENERGYCOAT)+1)*1; |