mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-23 02:55:47 +01:00
Fix Cancelling BlockPlaceEvent triggering physics
This commit is contained in:
parent
e11a8f0bd5
commit
d46dec88b4
@ -0,0 +1,21 @@
|
||||
From 8f77a10266af399b92df901a54c938c7dab91a84 Mon Sep 17 00:00:00 2001
|
||||
From: Aikar <aikar@aikar.co>
|
||||
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 492831d..10e40aa 100644
|
||||
--- a/src/main/java/net/minecraft/server/World.java
|
||||
+++ b/src/main/java/net/minecraft/server/World.java
|
||||
@@ -526,6 +526,7 @@ public abstract class World implements IBlockAccess {
|
||||
}
|
||||
|
||||
public void applyPhysics(BlockPosition blockposition, Block block) {
|
||||
+ if (captureBlockStates) { return; } // Paper - Cancel all physics during placement
|
||||
this.e(blockposition.west(), block);
|
||||
this.e(blockposition.east(), block);
|
||||
this.e(blockposition.down(), block);
|
||||
--
|
||||
2.8.0
|
||||
|
Loading…
Reference in New Issue
Block a user