1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-02-18 11:22:15 +01:00

Fix desync of honeycomb when the event is canceled ()

This commit is contained in:
Lulu13022002 2023-02-11 18:14:03 +01:00
parent 723559e9f0
commit f3de04a9fb

View file

@ -120,6 +120,9 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
ItemStack itemStack = context.getItemInHand();
+ // Paper start - EntityChangeBlockEvent
+ if (org.bukkit.craftbukkit.event.CraftEventFactory.callEntityChangeBlockEvent(player, blockPos, state).isCancelled()) {
+ if (!player.isCreative()) {
+ player.containerMenu.sendAllDataToRemote();
+ }
+ return InteractionResult.PASS;
+ }
+ // Paper end