mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-08 11:50:32 +01:00
c02c01b2c5
Also removes our toggle for Spigot's option, I doubt anyone uses it.
22 lines
856 B
Diff
22 lines
856 B
Diff
From 9d594315e16f67e42a026ecc7088aa2903889248 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 bb578d9..4452107 100644
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
|
@@ -516,6 +516,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.10.0.windows.1
|
|
|