2020-05-06 11:48:49 +02:00
|
|
|
From 0000000000000000000000000000000000000000 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
|
2020-09-03 22:52:21 +02:00
|
|
|
index ee59d76d31b8b8cfd39d612b1e6040891f2256f4..36cf4c332054a350ae193637f895a45a8b04da9b 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
|
2020-06-25 15:11:48 +02:00
|
|
|
@@ -148,6 +148,11 @@ public class PlayerInteractManager {
|
2019-07-20 06:01:24 +02:00
|
|
|
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);
|
2020-09-03 22:52:21 +02:00
|
|
|
@@ -446,13 +451,32 @@ public class PlayerInteractManager {
|
|
|
|
interactResult = event.useItemInHand() == Event.Result.DENY;
|
2020-06-25 15:11:48 +02:00
|
|
|
|
|
|
|
if (event.useInteractedBlock() == Event.Result.DENY) {
|
|
|
|
+
|
|
|
|
// If we denied a door from opening, we need to send a correcting update to the client, as it already opened the door.
|
|
|
|
if (iblockdata.getBlock() instanceof BlockDoor) {
|
|
|
|
boolean bottom = iblockdata.get(BlockDoor.HALF) == BlockPropertyDoubleBlockHalf.LOWER;
|
|
|
|
entityplayer.playerConnection.sendPacket(new PacketPlayOutBlockChange(world, bottom ? blockposition.up() : blockposition.down()));
|
2018-07-18 20:55:52 +02:00
|
|
|
} else if (iblockdata.getBlock() instanceof BlockCake) {
|
2020-06-25 15:11:48 +02:00
|
|
|
entityplayer.getBukkitEntity().sendHealthUpdate(); // SPIGOT-1341 - reset health for cake
|
2018-07-18 20:55:52 +02:00
|
|
|
+ // Paper start - extend Player Interact cancellation // TODO: consider merging this into the extracted method
|
|
|
|
+ } else if (iblockdata.getBlock() instanceof BlockStructure) {
|
2020-06-25 15:11:48 +02:00
|
|
|
+ entityplayer.playerConnection.sendPacket(new PacketPlayOutCloseWindow());
|
2018-07-18 20:55:52 +02:00
|
|
|
+ } else if (iblockdata.getBlock() instanceof BlockCommand) {
|
2020-06-25 15:11:48 +02:00
|
|
|
+ entityplayer.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
|
2020-06-25 15:11:48 +02:00
|
|
|
entityplayer.getBukkitEntity().updateInventory(); // SPIGOT-2867
|
2018-07-18 20:55:52 +02:00
|
|
|
enuminteractionresult = (event.useItemInHand() != Event.Result.ALLOW) ? EnumInteractionResult.SUCCESS : EnumInteractionResult.PASS;
|
|
|
|
} else if (this.gamemode == EnumGamemode.SPECTATOR) {
|