Fix losing bowl

This commit is contained in:
gregf36665 2024-12-20 18:37:16 +00:00 committed by Syndromeramo
parent 71abaf9e03
commit e890f7412d

View file

@ -75,6 +75,7 @@ class TeaInteraction : InteractionListener {
onUseWith(ITEM, teaCupPorcelainMap.keys.toIntArray(), Items.PORCELAIN_CUP_4244){player, used, with -> onUseWith(ITEM, teaCupPorcelainMap.keys.toIntArray(), Items.PORCELAIN_CUP_4244){player, used, with ->
if(removeItem(player, used) && removeItem(player, with)){ if(removeItem(player, used) && removeItem(player, with)){
addItem(player, teaCupPorcelainMap[used.id]!!) addItem(player, teaCupPorcelainMap[used.id]!!)
addItem(player, Items.BOWL_1923)
} }
return@onUseWith true return@onUseWith true
} }