aboutsummaryrefslogtreecommitdiffhomepage
path: root/Spigot-Server-Patches/0105-Fix-Cancelling-BlockPlaceEvent-triggering-physics.patch
diff options
context:
space:
mode:
Diffstat (limited to 'Spigot-Server-Patches/0105-Fix-Cancelling-BlockPlaceEvent-triggering-physics.patch')
-rw-r--r--Spigot-Server-Patches/0105-Fix-Cancelling-BlockPlaceEvent-triggering-physics.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/Spigot-Server-Patches/0105-Fix-Cancelling-BlockPlaceEvent-triggering-physics.patch b/Spigot-Server-Patches/0105-Fix-Cancelling-BlockPlaceEvent-triggering-physics.patch
new file mode 100644
index 0000000000..88464f5552
--- /dev/null
+++ b/Spigot-Server-Patches/0105-Fix-Cancelling-BlockPlaceEvent-triggering-physics.patch
@@ -0,0 +1,21 @@
+From 8ae180ad3f8cf80824fe419082538df82a2b0e2a Mon Sep 17 00:00:00 2001
+From: Aikar <[email protected]>
+Date: Sun, 3 Apr 2016 17:48:50 -0400
+Subject: [PATCH] Fix Cancelling BlockPlaceEvent triggering physics
+
+
+diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
+index dba3fb167..44108ab9a 100644
+--- a/src/main/java/net/minecraft/server/World.java
++++ b/src/main/java/net/minecraft/server/World.java
+@@ -532,6 +532,7 @@ public abstract class World implements IBlockAccess {
+ }
+
+ public void applyPhysics(BlockPosition blockposition, Block block, boolean flag) {
++ if (captureBlockStates) { return; } // Paper - Cancel all physics during placement
+ this.a(blockposition.west(), block, blockposition);
+ this.a(blockposition.east(), block, blockposition);
+ this.a(blockposition.down(), block, blockposition);
+--
+2.12.2
+