2018-07-03 05:33:21 +02:00
|
|
|
From a4c6f19b6b2bb852891f867ca3c96bd485e4b58b 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-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
|
2018-07-03 05:33:21 +02:00
|
|
|
index 5ec7f5819..24f14337a 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
|
2018-07-03 05:33:21 +02:00
|
|
|
@@ -468,6 +468,24 @@ public class PlayerInteractManager {
|
2018-02-11 11:52:04 +01:00
|
|
|
((EntityPlayer) entityhuman).playerConnection.sendPacket(new PacketPlayOutBlockChange(world, bottom ? blockposition.up() : blockposition.down()));
|
|
|
|
} else if (blockdata.getBlock() instanceof BlockCake) {
|
|
|
|
((EntityPlayer) entityhuman).getBukkitEntity().sendHealthUpdate(); // SPIGOT-1341 - reset health for cake
|
2018-07-03 05:33:21 +02:00
|
|
|
+ // Paper start - extend Player Interact cancellation
|
2018-02-18 15:39:02 +01:00
|
|
|
+ } else if (blockdata.getBlock() instanceof BlockStructure) {
|
|
|
|
+ ((EntityPlayer) entityhuman).playerConnection.sendPacket(new PacketPlayOutCloseWindow());
|
|
|
|
+ } else if (blockdata.getBlock() instanceof BlockCommand) {
|
|
|
|
+ ((EntityPlayer) entityhuman).playerConnection.sendPacket(new PacketPlayOutCloseWindow());
|
2018-07-03 05:33:21 +02:00
|
|
|
+ } else if (blockdata.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);
|
|
|
|
+
|
|
|
|
+ this.player.playerConnection.sendPacket(new PacketPlayOutBlockChange(this.world, blockposition));
|
|
|
|
+
|
|
|
|
+ TileEntity tileentity = this.world.getTileEntity(blockposition);
|
|
|
|
+ if (tileentity != null) {
|
|
|
|
+ player.playerConnection.sendPacket(tileentity.getUpdatePacket());
|
|
|
|
+ }
|
|
|
|
+ // Paper end - extend Player Interact cancellation
|
2018-02-11 11:52:04 +01:00
|
|
|
}
|
|
|
|
((EntityPlayer) entityhuman).getBukkitEntity().updateInventory(); // SPIGOT-2867
|
|
|
|
enuminteractionresult = (event.useItemInHand() != Event.Result.ALLOW) ? EnumInteractionResult.SUCCESS : EnumInteractionResult.PASS;
|
|
|
|
--
|
2018-07-03 05:33:21 +02:00
|
|
|
2.17.1
|
2018-02-11 11:52:04 +01:00
|
|
|
|