From 11abc4bbabc1308c862eef8f37900381ffddab08 Mon Sep 17 00:00:00 2001 From: Ceikry Date: Sat, 9 Apr 2022 02:22:35 +0000 Subject: [PATCH] Fixed a bug with Gertrude's Cat where it would give you the wrong bucket back when feeding the cat --- .../kotlin/rs09/game/interaction/item/withnpc/GCItemOnCat.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/src/main/kotlin/rs09/game/interaction/item/withnpc/GCItemOnCat.kt b/Server/src/main/kotlin/rs09/game/interaction/item/withnpc/GCItemOnCat.kt index 94136f656..f1524b8d7 100644 --- a/Server/src/main/kotlin/rs09/game/interaction/item/withnpc/GCItemOnCat.kt +++ b/Server/src/main/kotlin/rs09/game/interaction/item/withnpc/GCItemOnCat.kt @@ -17,7 +17,7 @@ class GCItemOnCat : InteractionListener() { onUseWith(NPC, Items.BUCKET_OF_MILK_1927, NPCs.GERTRUDES_CAT_2997) {player, used, with -> if(questStage(player, GERTCAT) == 20 && removeItem(player, used.asItem())){ - addItem(player, Items.EMPTY_BUCKET_3727) + addItem(player, Items.BUCKET_1925) animate(player, BEND_DOWN) //bend down sendChat(with.asNpc(), "Mew!") setQuestStage(player, GERTCAT, 30)