Fix issue with cups of tea getting milky

This commit is contained in:
gregf36665 2025-02-08 18:33:19 +00:00 committed by Syndromeramo
parent 3e0dea0d1b
commit 58bc4833cb

View file

@ -155,7 +155,13 @@ class TeaInteraction : InteractionListener {
else{
addItem(player, used.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