From 0b721d2a786f347afca33ee493d72a9782759169 Mon Sep 17 00:00:00 2001 From: gregf36665 Date: Sat, 21 Dec 2024 19:51:24 +0000 Subject: [PATCH] Add filling tea for all tiers --- .../main/content/global/skill/cooking/TeaInteraction.kt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Server/src/main/content/global/skill/cooking/TeaInteraction.kt b/Server/src/main/content/global/skill/cooking/TeaInteraction.kt index 598e17280..a71d6a6e8 100644 --- a/Server/src/main/content/global/skill/cooking/TeaInteraction.kt +++ b/Server/src/main/content/global/skill/cooking/TeaInteraction.kt @@ -134,6 +134,13 @@ class TeaInteraction : InteractionListener { onUseWith(ITEM, t1teapot, Items.EMPTY_CUP_7728) { player, used, with -> return@onUseWith fillBuildersTea(player, used, with) } + + onUseWith(ITEM, t2teapot, Items.PORCELAIN_CUP_7732) { player, used, with -> + return@onUseWith fillBuildersTea(player, used, with) + } + onUseWith(ITEM, t3teapot, Items.PORCELAIN_CUP_7735) { player, used, with -> + return@onUseWith fillBuildersTea(player, used, with) + } } private fun fillBuildersTea(player: Player, used: Node, with: Node) : Boolean {