2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/BlockTrapdoor.java
|
|
|
|
+++ b/net/minecraft/server/BlockTrapdoor.java
|
2016-05-10 13:47:39 +02:00
|
|
|
@@ -1,6 +1,7 @@
|
2016-02-29 22:32:46 +01:00
|
|
|
package net.minecraft.server;
|
2014-11-25 22:32:16 +01:00
|
|
|
|
2016-05-10 13:47:39 +02:00
|
|
|
import javax.annotation.Nullable;
|
2014-11-25 22:32:16 +01:00
|
|
|
+import org.bukkit.event.block.BlockRedstoneEvent; // CraftBukkit
|
2016-05-10 13:47:39 +02:00
|
|
|
|
2018-07-15 02:00:00 +02:00
|
|
|
public class BlockTrapdoor extends BlockFacingHorizontal implements IFluidSource, IFluidContainer {
|
2014-11-25 22:32:16 +01:00
|
|
|
|
2018-07-15 02:00:00 +02:00
|
|
|
@@ -94,6 +95,19 @@
|
2016-02-29 22:32:46 +01:00
|
|
|
boolean flag = world.isBlockIndirectlyPowered(blockposition);
|
2014-11-25 22:32:16 +01:00
|
|
|
|
2018-07-15 02:00:00 +02:00
|
|
|
if (flag != ((Boolean) iblockdata.get(BlockTrapdoor.c)).booleanValue()) {
|
2016-02-29 22:32:46 +01:00
|
|
|
+ // CraftBukkit start
|
|
|
|
+ org.bukkit.World bworld = world.getWorld();
|
|
|
|
+ org.bukkit.block.Block bblock = bworld.getBlockAt(blockposition.getX(), blockposition.getY(), blockposition.getZ());
|
2014-11-25 22:32:16 +01:00
|
|
|
+
|
2016-02-29 22:32:46 +01:00
|
|
|
+ int power = bblock.getBlockPower();
|
|
|
|
+ int oldPower = (Boolean) iblockdata.get(OPEN) ? 15 : 0;
|
2014-11-25 22:32:16 +01:00
|
|
|
+
|
2018-07-15 02:00:00 +02:00
|
|
|
+ if (oldPower == 0 ^ power == 0 || block.getBlockData().isPowerSource()) {
|
2016-02-29 22:32:46 +01:00
|
|
|
+ BlockRedstoneEvent eventRedstone = new BlockRedstoneEvent(bblock, oldPower, power);
|
|
|
|
+ world.getServer().getPluginManager().callEvent(eventRedstone);
|
|
|
|
+ flag = eventRedstone.getNewCurrent() > 0;
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
2018-07-15 02:00:00 +02:00
|
|
|
if (((Boolean) iblockdata.get(BlockTrapdoor.OPEN)).booleanValue() != flag) {
|
|
|
|
iblockdata = (IBlockData) iblockdata.set(BlockTrapdoor.OPEN, Boolean.valueOf(flag));
|
|
|
|
this.a((EntityHuman) null, world, blockposition, flag);
|