2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/BlockPoweredRail.java
|
|
|
|
+++ b/net/minecraft/server/BlockPoweredRail.java
|
2018-07-15 02:00:00 +02:00
|
|
|
@@ -1,5 +1,7 @@
|
|
|
|
package net.minecraft.server;
|
2014-11-25 22:32:16 +01:00
|
|
|
|
|
|
|
+import org.bukkit.craftbukkit.event.CraftEventFactory; // CraftBukkit
|
|
|
|
+
|
|
|
|
public class BlockPoweredRail 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
|
|
|
@@ -106,6 +108,13 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
boolean flag1 = world.isBlockIndirectlyPowered(blockposition) || this.a(world, blockposition, iblockdata, true, 0) || this.a(world, blockposition, iblockdata, false, 0);
|
|
|
|
|
|
|
|
if (flag1 != flag) {
|
|
|
|
+ // CraftBukkit start
|
2018-07-15 02:00:00 +02:00
|
|
|
+ int power = flag ? 15 : 0;
|
|
|
|
+ int newPower = CraftEventFactory.callRedstoneChange(world, blockposition, power, 15 - power).getNewCurrent();
|
2014-11-25 22:32:16 +01:00
|
|
|
+ if (newPower == power) {
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
2018-07-15 02:00:00 +02:00
|
|
|
world.setTypeAndData(blockposition, (IBlockData) iblockdata.set(BlockPoweredRail.POWERED, Boolean.valueOf(flag1)), 3);
|
|
|
|
world.applyPhysics(blockposition.down(), this);
|
|
|
|
if (((BlockPropertyTrackPosition) iblockdata.get(BlockPoweredRail.SHAPE)).c()) {
|