From 58bc4833cb995fefa77281c8ba1cd1fa49aeda94 Mon Sep 17 00:00:00 2001 From: gregf36665 Date: Sat, 8 Feb 2025 18:33:19 +0000 Subject: [PATCH] Fix issue with cups of tea getting milky --- .../main/content/global/skill/cooking/TeaInteraction.kt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Server/src/main/content/global/skill/cooking/TeaInteraction.kt b/Server/src/main/content/global/skill/cooking/TeaInteraction.kt index 7b5ef4040..6a5c6d75f 100644 --- a/Server/src/main/content/global/skill/cooking/TeaInteraction.kt +++ b/Server/src/main/content/global/skill/cooking/TeaInteraction.kt @@ -155,7 +155,13 @@ class TeaInteraction : InteractionListener { else{ addItem(player, used.id + 2) } - addItem(player, with.id + 2) + // Why do these cups have a noted form! + if (with.id == Items.EMPTY_CUP_7728){ + addItem(player, with.id + 2) + } + else{ + addItem(player, with.id + 1) + } return true } return false