diff options
Diffstat (limited to 'npc/003-5/jeweler.txt')
-rw-r--r-- | npc/003-5/jeweler.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/npc/003-5/jeweler.txt b/npc/003-5/jeweler.txt index 5228f97e3..d0dd74d94 100644 --- a/npc/003-5/jeweler.txt +++ b/npc/003-5/jeweler.txt @@ -25,7 +25,7 @@ L_Menu: menu l("I want to shop."), -, l("I want to craft rings."), L_Craft, - rif(countitem(GoldenRing) >= 1 || countitem(SilverRing) >= 1, l("I want to create polished gemstones.")), L_Gemstone, + l("I want to create polished gemstones."), L_Gemstone, l("I want to remove all stuff applied to my ring!"), L_Clear, l("Nothing, sorry."), L_Close; @@ -79,6 +79,11 @@ L_Gemstone: next; goto L_Menu; } + if (!countitem(GoldenRing) && !countitem(SilverRing)) { + mesn l("Inya, the Jeweler"); + mesq l("You don't have a ring but I can polish the gemstones nonetheless."); + next; + } select l("Not today, sorry."), rif(countitem(Diamond) >= 2 , l("Diamond (+2 vit)")), |