summaryrefslogtreecommitdiffstats
path: root/nms-patches/BlockDiodeAbstract.patch
diff options
context:
space:
mode:
Diffstat (limited to 'nms-patches/BlockDiodeAbstract.patch')
-rw-r--r--nms-patches/BlockDiodeAbstract.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/nms-patches/BlockDiodeAbstract.patch b/nms-patches/BlockDiodeAbstract.patch
new file mode 100644
index 00000000..f0c210d8
--- /dev/null
+++ b/nms-patches/BlockDiodeAbstract.patch
@@ -0,0 +1,30 @@
+--- ../work/decompile-bb26c12b/net/minecraft/server/BlockDiodeAbstract.java 2014-11-27 08:59:46.517422657 +1100
++++ src/main/java/net/minecraft/server/BlockDiodeAbstract.java 2014-11-27 08:42:10.172850872 +1100
+@@ -2,6 +2,8 @@
+
+ import java.util.Random;
+
++import org.bukkit.craftbukkit.event.CraftEventFactory; // CraftBukkit
++
+ public abstract class BlockDiodeAbstract extends BlockDirectional {
+
+ protected final boolean M;
+@@ -31,8 +33,18 @@
+ boolean flag = this.e(world, blockposition, iblockdata);
+
+ if (this.M && !flag) {
++ // CraftBukkit start
++ if (CraftEventFactory.callRedstoneChange(world, blockposition.getX(), blockposition.getY(), blockposition.getZ(), 15, 0).getNewCurrent() != 0) {
++ return;
++ }
++ // CraftBukkit end
+ world.setTypeAndData(blockposition, this.k(iblockdata), 2);
+ } else if (!this.M) {
++ // CraftBukkit start
++ if (CraftEventFactory.callRedstoneChange(world, blockposition.getX(), blockposition.getY(), blockposition.getZ(), 0, 15).getNewCurrent() != 15) {
++ return;
++ }
++ // CraftBukkit end
+ world.setTypeAndData(blockposition, this.e(iblockdata), 2);
+ if (!flag) {
+ world.a(blockposition, this.e(iblockdata).getBlock(), this.m(iblockdata), -1);