Add filling tea for all tiers

This commit is contained in:
gregf36665 2024-12-21 19:51:24 +00:00 committed by Syndromeramo
parent 6ea9151e1e
commit 0b721d2a78

View file

@ -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 {