2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Shane Freeder <theboyetronic@gmail.com>
|
|
|
|
Date: Sun, 11 Feb 2018 10:43:46 +0000
|
|
|
|
Subject: [PATCH] Extend Player Interact cancellation
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
Flower pots are also not updated on the client when interaction is cancelled, this patch
|
|
|
|
also resolves this.
|
|
|
|
|
|
|
|
Update adjacent blocks of doors, double plants, pistons and beds
|
|
|
|
when cancelling interaction.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/level/ServerPlayerGameMode.java b/src/main/java/net/minecraft/server/level/ServerPlayerGameMode.java
|
2023-12-05 23:12:48 +01:00
|
|
|
index 45236a077d798d6a257a2e982b58901167ecd06e..e3b7441d875b55ffce295c948f3dc867be09e042 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/level/ServerPlayerGameMode.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/level/ServerPlayerGameMode.java
|
2023-12-03 04:41:35 +01:00
|
|
|
@@ -519,7 +519,13 @@ public class ServerPlayerGameMode {
|
2021-06-11 14:02:28 +02:00
|
|
|
|
|
|
|
// send a correcting update to the client for the block above as well, this because of replaceable blocks (such as grass, sea grass etc)
|
|
|
|
player.connection.send(new ClientboundBlockUpdatePacket(world, blockposition.above()));
|
|
|
|
+ // Paper start - extend Player Interact cancellation // TODO: consider merging this into the extracted method
|
2021-06-12 18:56:13 +02:00
|
|
|
+ } else if (iblockdata.getBlock() instanceof net.minecraft.world.level.block.StructureBlock) {
|
|
|
|
+ player.connection.send(new net.minecraft.network.protocol.game.ClientboundContainerClosePacket(this.player.containerMenu.containerId));
|
|
|
|
+ } else if (iblockdata.getBlock() instanceof net.minecraft.world.level.block.CommandBlock) {
|
|
|
|
+ player.connection.send(new net.minecraft.network.protocol.game.ClientboundContainerClosePacket(this.player.containerMenu.containerId));
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
+ // Paper end - extend Player Interact cancellation
|
|
|
|
player.getBukkitEntity().updateInventory(); // SPIGOT-2867
|
|
|
|
enuminteractionresult = (event.useItemInHand() != Event.Result.ALLOW) ? InteractionResult.SUCCESS : InteractionResult.PASS;
|
|
|
|
} else if (this.gameModeForPlayer == GameType.SPECTATOR) {
|