summaryrefslogtreecommitdiff
path: root/npc/008-2-16/stove.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/008-2-16/stove.txt')
-rw-r--r--npc/008-2-16/stove.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/008-2-16/stove.txt b/npc/008-2-16/stove.txt
index 91036c44..40dfeca9 100644
--- a/npc/008-2-16/stove.txt
+++ b/npc/008-2-16/stove.txt
@@ -25,14 +25,14 @@
setskin "craft4";
.@var$ = requestcraft(4); // Limit: 4 items
.@craft = initcraft(.@var$);
- .@entry = findcraftentry(.@craft, CRAFT_SANDWICH);
+ .@entry = findcraftentry(.@craft, CRAFT_COOKING);
setskin "";
// Does the recipe exist and is a sandwich?
if (.@entry < 0)
{
narrator
- l("You don't know how to make a sandwich with that."),
+ l("You don't know how any recipe with that."),
l("Do you want to try again?");
if (askyesno() == ASK_YES)
.@tryAgain=true;
@@ -52,7 +52,7 @@
{
// Even if the recipe is right, if you don't have it on your
// recipe book, it should be deemed invalid.
- if (COOKING_RECIPES[.@entry])
+ if (RECIPES[.@entry])
{
usecraft .@craft;
narrator
@@ -62,7 +62,7 @@
else
{
narrator
- l("You don't know how to make a sandwich with that."),
+ l("You don't know how any recipe with that."),
l("Do you want to try again?");
}