mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 10:17:38 +01:00
8398e12b34
By: md_5 <git@md-5.net>
33 lines
1.4 KiB
Diff
33 lines
1.4 KiB
Diff
--- a/net/minecraft/world/level/block/BlockLever.java
|
|
+++ b/net/minecraft/world/level/block/BlockLever.java
|
|
@@ -28,6 +28,8 @@
|
|
import net.minecraft.world.phys.shapes.VoxelShape;
|
|
import net.minecraft.world.phys.shapes.VoxelShapeCollision;
|
|
|
|
+import org.bukkit.event.block.BlockRedstoneEvent; // CraftBukkit
|
|
+
|
|
public class BlockLever extends BlockAttachable {
|
|
|
|
public static final MapCodec<BlockLever> CODEC = simpleCodec(BlockLever::new);
|
|
@@ -101,6 +103,20 @@
|
|
|
|
return EnumInteractionResult.SUCCESS;
|
|
} else {
|
|
+ // CraftBukkit start - Interact Lever
|
|
+ boolean powered = iblockdata.getValue(BlockLever.POWERED); // Old powered state
|
|
+ org.bukkit.block.Block block = world.getWorld().getBlockAt(blockposition.getX(), blockposition.getY(), blockposition.getZ());
|
|
+ int old = (powered) ? 15 : 0;
|
|
+ int current = (!powered) ? 15 : 0;
|
|
+
|
|
+ BlockRedstoneEvent eventRedstone = new BlockRedstoneEvent(block, old, current);
|
|
+ world.getCraftServer().getPluginManager().callEvent(eventRedstone);
|
|
+
|
|
+ if ((eventRedstone.getNewCurrent() > 0) != (!powered)) {
|
|
+ return EnumInteractionResult.SUCCESS;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
+
|
|
iblockdata1 = this.pull(iblockdata, world, blockposition);
|
|
float f = (Boolean) iblockdata1.getValue(BlockLever.POWERED) ? 0.6F : 0.5F;
|
|
|