mirror of
https://github.com/PaperMC/Paper.git
synced 2025-02-06 23:52:31 +01:00
Extend Player Interact cancellation to handle FlowerPots
This commit is contained in:
parent
14ccb8ebeb
commit
9d16e77b90
@ -1,25 +1,40 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
From: Shane Freeder <theboyetronic@gmail.com>
|
From: Shane Freeder <theboyetronic@gmail.com>
|
||||||
Date: Sun, 11 Feb 2018 10:43:46 +0000
|
Date: Sun, 11 Feb 2018 10:43:46 +0000
|
||||||
Subject: [PATCH] Extend Player Interact cancellation to GUIs
|
Subject: [PATCH] Extend Player Interact cancellation
|
||||||
|
|
||||||
GUIs are opened on the client, meaning that the server cannot block them from opening,
|
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.
|
However, it is possible to close these GUIs from the server.
|
||||||
|
|
||||||
|
Flower pots are also not updated on the client when interaction is cancelled, this patch
|
||||||
|
also resolves this.
|
||||||
|
|
||||||
diff --git a/src/main/java/net/minecraft/server/PlayerInteractManager.java b/src/main/java/net/minecraft/server/PlayerInteractManager.java
|
diff --git a/src/main/java/net/minecraft/server/PlayerInteractManager.java b/src/main/java/net/minecraft/server/PlayerInteractManager.java
|
||||||
index 5ec7f5819..b1cdb2154 100644
|
index 5ec7f5819..24f14337a 100644
|
||||||
--- a/src/main/java/net/minecraft/server/PlayerInteractManager.java
|
--- a/src/main/java/net/minecraft/server/PlayerInteractManager.java
|
||||||
+++ b/src/main/java/net/minecraft/server/PlayerInteractManager.java
|
+++ b/src/main/java/net/minecraft/server/PlayerInteractManager.java
|
||||||
@@ -0,0 +0,0 @@ public class PlayerInteractManager {
|
@@ -0,0 +0,0 @@ public class PlayerInteractManager {
|
||||||
((EntityPlayer) entityhuman).playerConnection.sendPacket(new PacketPlayOutBlockChange(world, bottom ? blockposition.up() : blockposition.down()));
|
((EntityPlayer) entityhuman).playerConnection.sendPacket(new PacketPlayOutBlockChange(world, bottom ? blockposition.up() : blockposition.down()));
|
||||||
} else if (blockdata.getBlock() instanceof BlockCake) {
|
} else if (blockdata.getBlock() instanceof BlockCake) {
|
||||||
((EntityPlayer) entityhuman).getBukkitEntity().sendHealthUpdate(); // SPIGOT-1341 - reset health for cake
|
((EntityPlayer) entityhuman).getBukkitEntity().sendHealthUpdate(); // SPIGOT-1341 - reset health for cake
|
||||||
+ // Paper start - extend Player Interact cancellation to GUIs
|
+ // Paper start - extend Player Interact cancellation
|
||||||
+ } else if (blockdata.getBlock() instanceof BlockStructure) {
|
+ } else if (blockdata.getBlock() instanceof BlockStructure) {
|
||||||
+ ((EntityPlayer) entityhuman).playerConnection.sendPacket(new PacketPlayOutCloseWindow());
|
+ ((EntityPlayer) entityhuman).playerConnection.sendPacket(new PacketPlayOutCloseWindow());
|
||||||
+ } else if (blockdata.getBlock() instanceof BlockCommand) {
|
+ } else if (blockdata.getBlock() instanceof BlockCommand) {
|
||||||
+ ((EntityPlayer) entityhuman).playerConnection.sendPacket(new PacketPlayOutCloseWindow());
|
+ ((EntityPlayer) entityhuman).playerConnection.sendPacket(new PacketPlayOutCloseWindow());
|
||||||
+ // Paper end - extend Player Interact cancellation to GUIs
|
+ } 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
|
||||||
}
|
}
|
||||||
((EntityPlayer) entityhuman).getBukkitEntity().updateInventory(); // SPIGOT-2867
|
((EntityPlayer) entityhuman).getBukkitEntity().updateInventory(); // SPIGOT-2867
|
||||||
enuminteractionresult = (event.useItemInHand() != Event.Result.ALLOW) ? EnumInteractionResult.SUCCESS : EnumInteractionResult.PASS;
|
enuminteractionresult = (event.useItemInHand() != Event.Result.ALLOW) ? EnumInteractionResult.SUCCESS : EnumInteractionResult.PASS;
|
Loading…
Reference in New Issue
Block a user