summaryrefslogtreecommitdiffstats
path: root/nms-patches/BlockPressurePlateAbstract.patch
blob: a226e9c44ed46a770778b9ff5cbda96fcb16aac6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
--- ../work/decompile-bb26c12b/net/minecraft/server/BlockPressurePlateAbstract.java	2014-11-27 08:59:46.557422481 +1100
+++ src/main/java/net/minecraft/server/BlockPressurePlateAbstract.java	2014-11-27 08:42:10.144850927 +1100
@@ -2,6 +2,8 @@
 
 import java.util.Random;
 
+import org.bukkit.event.block.BlockRedstoneEvent; // CraftBukkit
+
 public abstract class BlockPressurePlateAbstract extends Block {
 
     protected BlockPressurePlateAbstract(Material material) {
@@ -90,6 +92,19 @@
         int j = this.e(world, blockposition);
         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);