2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/BlockCommand.java
|
|
|
|
+++ b/net/minecraft/server/BlockCommand.java
|
2017-05-14 04:00:00 +02:00
|
|
|
@@ -4,6 +4,8 @@
|
|
|
|
import org.apache.logging.log4j.LogManager;
|
|
|
|
import org.apache.logging.log4j.Logger;
|
2014-11-25 22:32:16 +01:00
|
|
|
|
|
|
|
+import org.bukkit.event.block.BlockRedstoneEvent; // CraftBukkit
|
|
|
|
+
|
2016-02-29 22:32:46 +01:00
|
|
|
public class BlockCommand extends BlockTileEntity {
|
2014-11-25 22:32:16 +01:00
|
|
|
|
2017-05-14 04:00:00 +02:00
|
|
|
private static final Logger c = LogManager.getLogger();
|
|
|
|
@@ -30,6 +32,15 @@
|
|
|
|
TileEntityCommand tileentitycommand = (TileEntityCommand) tileentity;
|
|
|
|
boolean flag = world.isBlockIndirectlyPowered(blockposition);
|
2016-11-17 02:41:03 +01:00
|
|
|
boolean flag1 = tileentitycommand.f();
|
2017-05-14 04:00:00 +02: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;
|
2015-02-26 23:41:06 +01:00
|
|
|
+
|
2017-05-14 04:00:00 +02:00
|
|
|
+ BlockRedstoneEvent eventRedstone = new BlockRedstoneEvent(bukkitBlock, old, current);
|
|
|
|
+ world.getServer().getPluginManager().callEvent(eventRedstone);
|
|
|
|
+ flag = eventRedstone.getNewCurrent() > 0;
|
|
|
|
+ // CraftBukkit end
|
2016-02-29 22:32:46 +01:00
|
|
|
|
2017-05-14 04:00:00 +02:00
|
|
|
tileentitycommand.a(flag);
|
|
|
|
if (!flag1 && !tileentitycommand.h() && tileentitycommand.l() != TileEntityCommand.Type.SEQUENCE) {
|