2018-09-27 04:35:42 +02:00
|
|
|
From 478ed3a7a3ea26de8743a0f93b15d16372a5aee3 Mon Sep 17 00:00:00 2001
|
2018-08-24 16:38:31 +02:00
|
|
|
From: Sotr <i@omc.hk>
|
|
|
|
Date: Thu, 23 Aug 2018 16:14:12 +0800
|
|
|
|
Subject: [PATCH] Add source block to BlockPhysicsEvent
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
|
2018-09-18 03:50:02 +02:00
|
|
|
index 39175ea0ad..4426798c74 100644
|
2018-08-24 16:38:31 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
2018-09-18 03:50:02 +02:00
|
|
|
@@ -629,7 +629,7 @@ public abstract class World implements IEntityAccess, GeneratorAccess, IIBlockAc
|
2018-08-24 16:38:31 +02:00
|
|
|
// CraftBukkit start
|
|
|
|
CraftWorld world = ((WorldServer) this).getWorld();
|
|
|
|
if (world != null && !((WorldServer)this).stopPhysicsEvent) { // Paper
|
2018-08-24 17:57:11 +02:00
|
|
|
- BlockPhysicsEvent event = new BlockPhysicsEvent(world.getBlockAt(blockposition.getX(), blockposition.getY(), blockposition.getZ()), CraftBlockData.fromData(iblockdata));
|
|
|
|
+ BlockPhysicsEvent event = new BlockPhysicsEvent(world.getBlockAt(blockposition.getX(), blockposition.getY(), blockposition.getZ()), CraftBlockData.fromData(iblockdata), blockposition1.getX(), blockposition1.getY(), blockposition1.getZ()); // Paper - add source block
|
2018-08-24 16:38:31 +02:00
|
|
|
this.getServer().getPluginManager().callEvent(event);
|
|
|
|
|
|
|
|
if (event.isCancelled()) {
|
|
|
|
--
|
2018-09-18 03:50:02 +02:00
|
|
|
2.19.0
|
2018-08-24 16:38:31 +02:00
|
|
|
|