mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 11:44:19 +01:00
65bc2541a3
By: md_5 <git@md-5.net>
35 lines
1.6 KiB
Diff
35 lines
1.6 KiB
Diff
--- a/net/minecraft/world/level/block/BlockRedstoneLamp.java
|
|
+++ b/net/minecraft/world/level/block/BlockRedstoneLamp.java
|
|
@@ -12,6 +12,8 @@
|
|
import net.minecraft.world.level.block.state.IBlockData;
|
|
import net.minecraft.world.level.block.state.properties.BlockStateBoolean;
|
|
|
|
+import org.bukkit.craftbukkit.event.CraftEventFactory; // CraftBukkit
|
|
+
|
|
public class BlockRedstoneLamp extends Block {
|
|
|
|
public static final MapCodec<BlockRedstoneLamp> CODEC = simpleCodec(BlockRedstoneLamp::new);
|
|
@@ -42,6 +44,11 @@
|
|
if (flag1) {
|
|
world.scheduleTick(blockposition, (Block) this, 4);
|
|
} else {
|
|
+ // CraftBukkit start
|
|
+ if (CraftEventFactory.callRedstoneChange(world, blockposition, 0, 15).getNewCurrent() != 15) {
|
|
+ return;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
world.setBlock(blockposition, (IBlockData) iblockdata.cycle(BlockRedstoneLamp.LIT), 2);
|
|
}
|
|
}
|
|
@@ -52,6 +59,11 @@
|
|
@Override
|
|
protected void tick(IBlockData iblockdata, WorldServer worldserver, BlockPosition blockposition, RandomSource randomsource) {
|
|
if ((Boolean) iblockdata.getValue(BlockRedstoneLamp.LIT) && !worldserver.hasNeighborSignal(blockposition)) {
|
|
+ // CraftBukkit start
|
|
+ if (CraftEventFactory.callRedstoneChange(worldserver, blockposition, 15, 0).getNewCurrent() != 0) {
|
|
+ return;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
worldserver.setBlock(blockposition, (IBlockData) iblockdata.cycle(BlockRedstoneLamp.LIT), 2);
|
|
}
|
|
|