2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/BlockCommand.java
|
|
|
|
+++ b/net/minecraft/server/BlockCommand.java
|
2014-11-25 22:32:16 +01:00
|
|
|
@@ -2,6 +2,8 @@
|
|
|
|
|
|
|
|
import java.util.Random;
|
|
|
|
|
|
|
|
+import org.bukkit.event.block.BlockRedstoneEvent; // CraftBukkit
|
|
|
|
+
|
|
|
|
public class BlockCommand extends BlockContainer {
|
|
|
|
|
|
|
|
public static final BlockStateBoolean TRIGGERED = BlockStateBoolean.of("triggered");
|
2015-02-26 23:41:06 +01:00
|
|
|
@@ -20,10 +22,19 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
boolean flag = world.isBlockIndirectlyPowered(blockposition);
|
|
|
|
boolean flag1 = ((Boolean) iblockdata.get(BlockCommand.TRIGGERED)).booleanValue();
|
2015-02-26 23:41:06 +01:00
|
|
|
|
|
|
|
- if (flag && !flag1) {
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit start
|
|
|
|
+ org.bukkit.block.Block bukkitBlock = world.getWorld().getBlockAt(blockposition.getX(), blockposition.getY(), blockposition.getZ());
|
|
|
|
+ int old = flag1 ? 15 : 0;
|
|
|
|
+ int current = flag ? 15 : 0;
|
|
|
|
+
|
|
|
|
+ BlockRedstoneEvent eventRedstone = new BlockRedstoneEvent(bukkitBlock, old, current);
|
|
|
|
+ world.getServer().getPluginManager().callEvent(eventRedstone);
|
|
|
|
+ // CraftBukkit end
|
2015-02-26 23:41:06 +01:00
|
|
|
+
|
2014-11-25 22:32:16 +01:00
|
|
|
+ if (eventRedstone.getNewCurrent() > 0 && !(eventRedstone.getOldCurrent() > 0)) { // CraftBukkit
|
|
|
|
world.setTypeAndData(blockposition, iblockdata.set(BlockCommand.TRIGGERED, Boolean.valueOf(true)), 4);
|
|
|
|
world.a(blockposition, (Block) this, this.a(world));
|
|
|
|
- } else if (!flag && flag1) {
|
|
|
|
+ } else if (!(eventRedstone.getNewCurrent() > 0) && eventRedstone.getOldCurrent() > 0) { // CraftBukkit
|
|
|
|
world.setTypeAndData(blockposition, iblockdata.set(BlockCommand.TRIGGERED, Boolean.valueOf(false)), 4);
|
|
|
|
}
|
|
|
|
}
|