PaperMC/nms-patches/BlockMinecartDetector.patch

29 lines
1.1 KiB
Diff
Raw Normal View History

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;
+import org.bukkit.event.block.BlockRedstoneEvent; // CraftBukkit
+
public class BlockMinecartDetector extends BlockMinecartTrackAbstract {
2019-04-23 04:00:00 +02:00
public static final BlockStateEnum<BlockPropertyTrackPosition> SHAPE = BlockProperties.X;
2019-07-20 01:00:00 +02:00
@@ -62,6 +64,16 @@
}
2015-02-26 23:41:06 +01:00
2019-07-20 01:00:00 +02:00
IBlockData iblockdata1;
2016-07-15 12:08:04 +02:00
+ // CraftBukkit start
+ 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
2019-07-20 01:00:00 +02:00
if (flag1 && !flag) {
2019-07-20 01:00:00 +02:00
iblockdata1 = (IBlockData) iblockdata.set(BlockMinecartDetector.POWERED, true);