Skip to content

Commit

Permalink
Add reply to "grilled steak" in Alice Farmer's dialogue
Browse files Browse the repository at this point in the history
Closes: #577
  • Loading branch information
AntumDeluge committed Nov 16, 2023
1 parent 7d6d08c commit b7ef033
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions doc/CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Changelog
- seeds & bulbs items have unique images
- added Magic City chest to wizard's bank
- made coupon item stackable
- Alice Farmer includes grilled steak in the foods she lists

*bugfixes*

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* $Id$ */
/***************************************************************************
* (C) Copyright 2003-2010 - Stendhal *
* (C) Copyright 2003-2023 - Stendhal *
***************************************************************************
***************************************************************************
* *
Expand Down Expand Up @@ -66,7 +66,8 @@ protected void createDialog() {
addHelp("I walked around a bit and saw a nice looking tavern. Did you take a look inside already? It smells fantastic there!");
addOffer("I'm quite a #food expert, after all my travels on lovely holidays!");
addQuest("You could try all the #food available from cooks and chefs across the island. I can tell you what I've sampled on my travels.");
addReply("food", null, new ListProducedItemsOfClassAction("food","I think I've tasted everything, [#items]. I can tell you more about each foodstuff, if you like."));
addReply("food", null, new ListProducedItemsOfClassAction("food","I think I've tasted everything, [#items]. I can tell you more about each foodstuff, if you like.",
"grilled steak"));
add(
ConversationStates.ATTENDING,
"",
Expand All @@ -75,6 +76,7 @@ protected void createDialog() {
null,
new ListProducedItemDetailAction()
);
addReply("grilled steak", "Haunchy Meatoch makes grilled steaks. I hear that he likes to reward those who help him gather coal for his grill.");
addJob("Aaaah, I am on holiday here, only walking around.");
addGoodbye("Bye bye.");

Expand Down

0 comments on commit b7ef033

Please sign in to comment.