summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/003-0/wizard.txt6
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;