summaryrefslogtreecommitdiff
path: root/world/map/npc/015-3/pot.txt
diff options
context:
space:
mode:
authorHoraK-FDF <horak-fdf@web.de>2024-04-30 13:06:03 +0200
committerLed Mitz <smoothshifter@tuta.io>2024-05-16 16:28:21 +0000
commitc318b9a5ae988a982cc4ffcad2faaf6549aed9d8 (patch)
tree4431960f88b21f803d2fc016c4403600e86e060b /world/map/npc/015-3/pot.txt
parent6715c3406adc7e5d3666d0e440de054c5e096a57 (diff)
downloadserverdata-c318b9a5ae988a982cc4ffcad2faaf6549aed9d8.tar.gz
serverdata-c318b9a5ae988a982cc4ffcad2faaf6549aed9d8.tar.bz2
serverdata-c318b9a5ae988a982cc4ffcad2faaf6549aed9d8.tar.xz
serverdata-c318b9a5ae988a982cc4ffcad2faaf6549aed9d8.zip
item adds/changes
Diffstat (limited to 'world/map/npc/015-3/pot.txt')
-rw-r--r--world/map/npc/015-3/pot.txt14
1 files changed, 7 insertions, 7 deletions
diff --git a/world/map/npc/015-3/pot.txt b/world/map/npc/015-3/pot.txt
index 523be319..d13b819f 100644
--- a/world/map/npc/015-3/pot.txt
+++ b/world/map/npc/015-3/pot.txt
@@ -48,23 +48,23 @@ L_NeedsFood:
mes "The milk is gone!";
next;
- if (countitem("ChickenLeg") > 0 && countitem("Steak") > 0)
+ if (countitem("BirdLeg") > 0 && countitem("Steak") > 0)
menu
- "Put in a chicken leg.", L_GiveChicken,
+ "Put in a bird leg.", L_GiveBird,
"Put in a steak.", L_GiveSteak,
"Leave it alone.", L_Close;
- if (countitem("ChickenLeg") > 0 && countitem("Steak") == 0)
+ if (countitem("BirdLeg") > 0 && countitem("Steak") == 0)
menu
- "Put in a chicken leg.", L_GiveChicken,
+ "Put in a bird leg.", L_GiveBird,
"Leave it alone.", L_Close;
- if (countitem("ChickenLeg") == 0 && countitem("Steak") > 0)
+ if (countitem("BirdLeg") == 0 && countitem("Steak") > 0)
menu
"Put in a steak.", L_GiveSteak,
"Leave it alone.", L_Close;
goto L_Close;
-L_GiveChicken:
- delitem "ChickenLeg", 1;
+L_GiveBird:
+ delitem "BirdLeg", 1;
set @cat, 2;
callsub S_Update_Katze;
set @catNeedsAlone, 1;