Skip to content

Commit

Permalink
Fix typo in Klaas's dialogue
Browse files Browse the repository at this point in the history
  • Loading branch information
AntumDeluge committed Jul 2, 2024
1 parent a525112 commit 97ff418
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/games/stendhal/server/maps/quests/TrapsForKlaas.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public BringItemQuestBuilder story() {
.respondToRequest("The rats down here have been getting into the food storage. Would you help me rid us of the varmints?")
.respondToUnrepeatableRequest("Thanks for the traps. Now the food will be safe. But I may need your help again soon.")
.respondToRepeatedRequest("The rats down here have been getting into the food storage. Would you help me rid us of the varmints?")
.respondToAccept("Thanks, I need you to bring me bring me 20 #rodent #traps. Please hurry! We can't afford to lose anymore food.")
.respondToAccept("Thanks, I need you to bring me 20 #rodent #traps. Please hurry! We can't afford to lose anymore food.")
.respondToReject("Don't waste my time. I've got to protect the cargo.")
.rejectionKarmaPenalty(5.0)
.remind("I believe, I already asked you to get me 20 rodent traps.");
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/***************************************************************************
* (C) Copyright 2019-2023 - Arianne *
* (C) Copyright 2019-2024 - Arianne *
***************************************************************************
***************************************************************************
* *
Expand Down Expand Up @@ -145,7 +145,7 @@ private void testDialogue() {
en.step(player, "yes");
assertEquals(ConversationStates.ATTENDING, en.getCurrentState());
assertEquals(
"Thanks, I need you to bring me bring me 20 #rodent #traps. Please hurry! We can't afford to lose anymore food.",
"Thanks, I need you to bring me 20 #rodent #traps. Please hurry! We can't afford to lose anymore food.",
getReply(klaas));
assertEquals("start", player.getQuest(questName));
en.step(player, "rodent traps");
Expand Down

0 comments on commit 97ff418

Please sign in to comment.