1
0
mirror of https://github.com/GeyserMC/Geyser.git synced 2025-12-30 12:19:10 +00:00

Fix buckets on desktop survival (#1003)

This commit is contained in:
Camotoy
2020-07-23 14:37:14 -04:00
committed by GitHub
parent ad9184ad13
commit b103d86ff9

View File

@@ -141,7 +141,7 @@ public class BedrockInventoryTransactionTranslator extends PacketTranslator<Inve
}
// Handled in ITEM_USE
if (packet.getItemInHand() != null && packet.getItemInHand().getId() == ItemRegistry.BUCKET.getJavaId()) {
if (packet.getItemInHand() != null && packet.getItemInHand().getId() == ItemRegistry.BUCKET.getBedrockId()) {
break;
}