diff options
-rw-r--r-- | npc/005-1/maya.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/005-1/maya.txt b/npc/005-1/maya.txt index f4e9f1e80..c31f48b8a 100644 --- a/npc/005-1/maya.txt +++ b/npc/005-1/maya.txt @@ -44,11 +44,11 @@ L_Next: L_QuestAccepted: mesn; - mesq l("I see you have brought @@/3 @@ and @@/3 @@ for me",countitem("Cotton Cloth"),getitemlink(CottonCloth),countitem("Maggot Slime"),getitemlink(MaggotSlime)); + mesq l("I see you have brought @@/3 @@ and @@/3 @@ for me",countitem(CottonCloth),getitemlink(CottonCloth),countitem(MaggotSlime),getitemlink(MaggotSlime)); mes ""; menu - rif(countitem("Cotton Cloth") >= 3 && countitem("Maggot Slime") >= 3, l("Here they are!")), L_QuestCompleted, - rif(countitem("Cotton Cloth") < 3 || countitem("Maggot Slime") < 3, l("Oh, then I don't have enough! I'll bring more later!")), L_GetHelp1, + rif(countitem(CottonCloth) >= 3 && countitem(MaggotSlime) >= 3, l("Here they are!")), L_QuestCompleted, + rif(countitem(CottonCloth) < 3 || countitem(MaggotSlime) < 3, l("Oh, then I don't have enough! I'll bring more later!")), L_GetHelp1, l("Can we get back to that later?"), -; close; |