mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-29 19:52:55 +01:00
24 lines
1.2 KiB
Diff
24 lines
1.2 KiB
Diff
|
@@ -2,6 +2,8 @@
|
||
|
|
||
|
import com.google.common.base.Predicate;
|
||
|
|
||
|
+import org.bukkit.craftbukkit.event.CraftEventFactory; // CraftBukkit
|
||
|
+
|
||
|
public class BlockPoweredRail extends BlockMinecartTrackAbstract {
|
||
|
|
||
|
public static final BlockStateEnum SHAPE = BlockStateEnum.a("shape", EnumTrackPosition.class, (Predicate) (new BlockPoweredRailInnerClass1()));
|
||
|
@@ -108,6 +110,13 @@
|
||
|
boolean flag1 = world.isBlockIndirectlyPowered(blockposition) || this.a(world, blockposition, iblockdata, true, 0) || this.a(world, blockposition, iblockdata, false, 0);
|
||
|
|
||
|
if (flag1 != flag) {
|
||
|
+ // CraftBukkit start
|
||
|
+ int power = (Boolean)iblockdata.get(POWERED) ? 15 : 0;
|
||
|
+ int newPower = CraftEventFactory.callRedstoneChange(world, blockposition.getX(), blockposition.getY(), blockposition.getZ(), power, 15 - power).getNewCurrent();
|
||
|
+ if (newPower == power) {
|
||
|
+ return;
|
||
|
+ }
|
||
|
+ // CraftBukkit end
|
||
|
world.setTypeAndData(blockposition, iblockdata.set(BlockPoweredRail.POWERED, Boolean.valueOf(flag1)), 3);
|
||
|
world.applyPhysics(blockposition.down(), this);
|
||
|
if (((EnumTrackPosition) iblockdata.get(BlockPoweredRail.SHAPE)).c()) {
|