diff options
Diffstat (limited to 'world/map/npc/015-3/pot.txt')
-rw-r--r-- | world/map/npc/015-3/pot.txt | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/world/map/npc/015-3/pot.txt b/world/map/npc/015-3/pot.txt index cb38b344..786f0b3b 100644 --- a/world/map/npc/015-3/pot.txt +++ b/world/map/npc/015-3/pot.txt @@ -24,12 +24,13 @@ goto L_HasWood; if (@cat >= 4) goto L_Close; + goto L_NeedsMilk; L_NeedsMilk: if (countitem("Milk") > 0) menu "Pour in some milk.", L_GiveMilk, - "Leave it alone.", -; + "Leave it alone.", L_Close; goto L_Close; L_GiveMilk: @@ -51,15 +52,15 @@ L_NeedsFood: menu "Put in a chicken leg.", L_GiveChicken, "Put in a steak.", L_GiveSteak, - "Leave it alone.", -; + "Leave it alone.", L_Close; if (countitem("ChickenLeg") > 0 && countitem("Steak") == 0) menu "Put in a chicken leg.", L_GiveChicken, - "Leave it alone.", -; + "Leave it alone.", L_Close; if (countitem("ChickenLeg") == 0 && countitem("Steak") > 0) menu "Put in a steak.", L_GiveSteak, - "Leave it alone.", -; + "Leave it alone.", L_Close; goto L_Close; L_GiveChicken: @@ -87,7 +88,7 @@ L_NeedsFur: if (countitem("WhiteFur") > 0) menu "Put a white fur next to the pot.", L_GiveFur, - "Leave it alone.", -; + "Leave it alone.", L_Close; goto L_Close; L_GiveFur: @@ -98,7 +99,7 @@ L_NeedsWood: if (countitem("RawLog") > 0) menu "Put a wooden log next to the pot.", L_GiveWood, - "Leave it alone.", -; + "Leave it alone.", L_Close; goto L_Close; L_GiveWood: |