Paper/nms-patches/BlockMinecartDetector.patch

30 lines
1.2 KiB
Diff
Raw Normal View History

2015-05-25 18:37:24 +08:00
--- a/net/minecraft/server/BlockMinecartDetector.java
+++ b/net/minecraft/server/BlockMinecartDetector.java
2016-05-10 19:47:39 +08:00
@@ -6,6 +6,8 @@
2018-07-15 08:00:00 +08:00
import java.util.function.Predicate;
2016-05-10 19:47:39 +08:00
import javax.annotation.Nullable;
+import org.bukkit.event.block.BlockRedstoneEvent; // CraftBukkit
+
public class BlockMinecartDetector extends BlockMinecartTrackAbstract {
2018-08-26 10:00:00 +08:00
public static final BlockStateEnum<BlockPropertyTrackPosition> SHAPE = BlockProperties.S;
2018-07-15 08:00:00 +08:00
@@ -55,6 +57,17 @@
flag1 = true;
}
2015-02-27 06:41:06 +08:00
2016-07-15 18:08:04 +08: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
2015-02-27 06:41:06 +08:00
+
if (flag1 && !flag) {
2018-12-06 07:00:00 +08:00
world.setTypeAndData(blockposition, (IBlockData) iblockdata.set(BlockMinecartDetector.POWERED, true), 3);
2016-03-01 05:32:46 +08:00
this.b(world, blockposition, iblockdata, true);