mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
32 lines
1.2 KiB
Diff
32 lines
1.2 KiB
Diff
--- a/net/minecraft/server/BlockPressurePlateAbstract.java
|
|
+++ b/net/minecraft/server/BlockPressurePlateAbstract.java
|
|
@@ -3,6 +3,8 @@
|
|
import java.util.Random;
|
|
import javax.annotation.Nullable;
|
|
|
|
+import org.bukkit.event.block.BlockRedstoneEvent; // CraftBukkit
|
|
+
|
|
public abstract class BlockPressurePlateAbstract extends Block {
|
|
|
|
protected static final AxisAlignedBB a = new AxisAlignedBB(0.0625D, 0.0D, 0.0625D, 0.9375D, 0.03125D, 0.9375D);
|
|
@@ -95,6 +97,19 @@
|
|
boolean flag = i > 0;
|
|
boolean flag1 = j > 0;
|
|
|
|
+ // CraftBukkit start - Interact Pressure Plate
|
|
+ org.bukkit.World bworld = world.getWorld();
|
|
+ org.bukkit.plugin.PluginManager manager = world.getServer().getPluginManager();
|
|
+
|
|
+ if (flag != flag1) {
|
|
+ BlockRedstoneEvent eventRedstone = new BlockRedstoneEvent(bworld.getBlockAt(blockposition.getX(), blockposition.getY(), blockposition.getZ()), i, j);
|
|
+ manager.callEvent(eventRedstone);
|
|
+
|
|
+ flag1 = eventRedstone.getNewCurrent() > 0;
|
|
+ j = eventRedstone.getNewCurrent();
|
|
+ }
|
|
+ // CraftBukkit end
|
|
+
|
|
if (i != j) {
|
|
iblockdata = this.a(iblockdata, j);
|
|
world.setTypeAndData(blockposition, iblockdata, 2);
|