2019-07-23 21:17:32 +02:00
|
|
|
From 690247761e27ecdc269add52468d5858c76a571e Mon Sep 17 00:00:00 2001
|
2018-02-11 11:52:04 +01:00
|
|
|
From: Shane Freeder <theboyetronic@gmail.com>
|
|
|
|
Date: Sun, 11 Feb 2018 10:43:46 +0000
|
2018-07-03 05:33:21 +02:00
|
|
|
Subject: [PATCH] Extend Player Interact cancellation
|
2018-02-11 11:52:04 +01:00
|
|
|
|
2018-02-18 15:39:02 +01:00
|
|
|
GUIs are opened on the client, meaning that the server cannot block them from opening,
|
|
|
|
However, it is possible to close these GUIs from the server.
|
2018-02-11 11:52:04 +01:00
|
|
|
|
2018-07-03 05:33:21 +02:00
|
|
|
Flower pots are also not updated on the client when interaction is cancelled, this patch
|
|
|
|
also resolves this.
|
|
|
|
|
2018-07-13 09:48:51 +02:00
|
|
|
Update adjacent blocks of doors, double plants, pistons and beds
|
|
|
|
when cancelling interaction.
|
|
|
|
|
2018-02-11 11:52:04 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/PlayerInteractManager.java b/src/main/java/net/minecraft/server/PlayerInteractManager.java
|
2019-07-23 21:17:32 +02:00
|
|
|
index bce3844dd..8b30b7d4e 100644
|
2018-02-11 11:52:04 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/PlayerInteractManager.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PlayerInteractManager.java
|
2019-07-20 06:01:24 +02:00
|
|
|
@@ -136,6 +136,11 @@ public class PlayerInteractManager {
|
|
|
|
PlayerInteractEvent event = CraftEventFactory.callPlayerInteractEvent(this.player, Action.LEFT_CLICK_BLOCK, blockposition, enumdirection, this.player.inventory.getItemInHand(), EnumHand.MAIN_HAND);
|
|
|
|
if (event.isCancelled()) {
|
|
|
|
// Let the client know the block still exists
|
|
|
|
+ // Paper start - brute force neighbor blocks for any attached blocks
|
|
|
|
+ for (EnumDirection dir : EnumDirection.values()) {
|
|
|
|
+ this.player.playerConnection.sendPacket(new PacketPlayOutBlockChange(world, blockposition.shift(dir)));
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
2019-07-23 21:17:32 +02:00
|
|
|
this.player.playerConnection.sendPacket(new PacketPlayOutBlockChange(this.world, blockposition));
|
2019-07-20 06:01:24 +02:00
|
|
|
// Update any tile entity data for this block
|
|
|
|
TileEntity tileentity = this.world.getTileEntity(blockposition);
|
|
|
|
@@ -440,7 +445,25 @@ public class PlayerInteractManager {
|
2018-07-18 20:55:52 +02:00
|
|
|
((EntityPlayer) entityhuman).playerConnection.sendPacket(new PacketPlayOutBlockChange(world, bottom ? blockposition.up() : blockposition.down()));
|
|
|
|
} else if (iblockdata.getBlock() instanceof BlockCake) {
|
|
|
|
((EntityPlayer) entityhuman).getBukkitEntity().sendHealthUpdate(); // SPIGOT-1341 - reset health for cake
|
|
|
|
+ // Paper start - extend Player Interact cancellation // TODO: consider merging this into the extracted method
|
|
|
|
+ } else if (iblockdata.getBlock() instanceof BlockStructure) {
|
2018-02-18 15:39:02 +01:00
|
|
|
+ ((EntityPlayer) entityhuman).playerConnection.sendPacket(new PacketPlayOutCloseWindow());
|
2018-07-18 20:55:52 +02:00
|
|
|
+ } else if (iblockdata.getBlock() instanceof BlockCommand) {
|
2018-02-18 15:39:02 +01:00
|
|
|
+ ((EntityPlayer) entityhuman).playerConnection.sendPacket(new PacketPlayOutCloseWindow());
|
2018-07-18 20:55:52 +02:00
|
|
|
+ } else if (iblockdata.getBlock() instanceof BlockFlowerPot) {
|
|
|
|
+ // Send a block change to air and then send back the correct block, just to make the client happy
|
|
|
|
+ PacketPlayOutBlockChange packet = new PacketPlayOutBlockChange(this.world, blockposition);
|
|
|
|
+ packet.block = Blocks.AIR.getBlockData();
|
|
|
|
+ this.player.playerConnection.sendPacket(packet);
|
2018-07-03 05:33:21 +02:00
|
|
|
+
|
2018-07-18 20:55:52 +02:00
|
|
|
+ this.player.playerConnection.sendPacket(new PacketPlayOutBlockChange(this.world, blockposition));
|
2018-07-03 05:33:21 +02:00
|
|
|
+
|
2018-07-18 20:55:52 +02:00
|
|
|
+ TileEntity tileentity = this.world.getTileEntity(blockposition);
|
|
|
|
+ if (tileentity != null) {
|
|
|
|
+ player.playerConnection.sendPacket(tileentity.getUpdatePacket());
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
+ // Paper end - extend Player Interact cancellation
|
|
|
|
((EntityPlayer) entityhuman).getBukkitEntity().updateInventory(); // SPIGOT-2867
|
|
|
|
enuminteractionresult = (event.useItemInHand() != Event.Result.ALLOW) ? EnumInteractionResult.SUCCESS : EnumInteractionResult.PASS;
|
|
|
|
} else if (this.gamemode == EnumGamemode.SPECTATOR) {
|
2018-02-11 11:52:04 +01:00
|
|
|
--
|
2019-06-25 21:18:50 +02:00
|
|
|
2.22.0
|
2018-02-11 11:52:04 +01:00
|
|
|
|