Skip to content

Commit

Permalink
Fix buckets on desktop survival (GeyserMC#1003)
Browse files Browse the repository at this point in the history
  • Loading branch information
Camotoy authored Jul 23, 2020
1 parent ad9184a commit b103d86
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public void translate(InventoryTransactionPacket packet, GeyserSession session)
}

// 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;
}

Expand Down

0 comments on commit b103d86

Please sign in to comment.