2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/BlockMinecartDetector.java
|
|
|
|
+++ b/net/minecraft/server/BlockMinecartDetector.java
|
2016-05-10 13:47:39 +02:00
|
|
|
@@ -6,6 +6,8 @@
|
2018-07-15 02:00:00 +02:00
|
|
|
import java.util.function.Predicate;
|
2016-05-10 13:47:39 +02:00
|
|
|
import javax.annotation.Nullable;
|
2014-11-25 22:32:16 +01:00
|
|
|
|
|
|
|
+import org.bukkit.event.block.BlockRedstoneEvent; // CraftBukkit
|
|
|
|
+
|
|
|
|
public class BlockMinecartDetector extends BlockMinecartTrackAbstract {
|
|
|
|
|
2018-08-26 04:00:00 +02:00
|
|
|
public static final BlockStateEnum<BlockPropertyTrackPosition> SHAPE = BlockProperties.S;
|
2018-07-15 02:00:00 +02:00
|
|
|
@@ -55,6 +57,17 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
flag1 = true;
|
|
|
|
}
|
2015-02-26 23:41:06 +01:00
|
|
|
|
2016-07-15 12:08:04 +02:00
|
|
|
+ // CraftBukkit start
|
2014-11-25 22:32:16 +01:00
|
|
|
+ if (flag != flag1) {
|
|
|
|
+ org.bukkit.block.Block block = world.getWorld().getBlockAt(blockposition.getX(), blockposition.getY(), blockposition.getZ());
|
|
|
|
+
|
|
|
|
+ BlockRedstoneEvent eventRedstone = new BlockRedstoneEvent(block, flag ? 15 : 0, flag1 ? 15 : 0);
|
|
|
|
+ world.getServer().getPluginManager().callEvent(eventRedstone);
|
|
|
|
+
|
|
|
|
+ flag1 = eventRedstone.getNewCurrent() > 0;
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
2015-02-26 23:41:06 +01:00
|
|
|
+
|
2014-11-25 22:32:16 +01:00
|
|
|
if (flag1 && !flag) {
|
2018-07-15 02:00:00 +02:00
|
|
|
world.setTypeAndData(blockposition, (IBlockData) iblockdata.set(BlockMinecartDetector.POWERED, Boolean.valueOf(true)), 3);
|
2016-02-29 22:32:46 +01:00
|
|
|
this.b(world, blockposition, iblockdata, true);
|