From e890f7412de369ad00d6976a66868141ee069c68 Mon Sep 17 00:00:00 2001 From: gregf36665 Date: Fri, 20 Dec 2024 18:37:16 +0000 Subject: [PATCH] Fix losing bowl --- Server/src/main/content/global/skill/cooking/TeaInteraction.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/Server/src/main/content/global/skill/cooking/TeaInteraction.kt b/Server/src/main/content/global/skill/cooking/TeaInteraction.kt index b0f550f0b..686226291 100644 --- a/Server/src/main/content/global/skill/cooking/TeaInteraction.kt +++ b/Server/src/main/content/global/skill/cooking/TeaInteraction.kt @@ -75,6 +75,7 @@ class TeaInteraction : InteractionListener { onUseWith(ITEM, teaCupPorcelainMap.keys.toIntArray(), Items.PORCELAIN_CUP_4244){player, used, with -> if(removeItem(player, used) && removeItem(player, with)){ addItem(player, teaCupPorcelainMap[used.id]!!) + addItem(player, Items.BOWL_1923) } return@onUseWith true }