mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-08 11:50:32 +01:00
103 lines
4.5 KiB
Diff
103 lines
4.5 KiB
Diff
--- a/net/minecraft/server/BlockPiston.java
|
|
+++ b/net/minecraft/server/BlockPiston.java
|
|
@@ -2,6 +2,18 @@
|
|
|
|
import java.util.List;
|
|
|
|
+// CraftBukkit start
|
|
+import java.util.AbstractList;
|
|
+import java.util.Collection;
|
|
+import java.util.Iterator;
|
|
+import java.util.ListIterator;
|
|
+
|
|
+import com.google.common.collect.ImmutableList;
|
|
+import org.bukkit.craftbukkit.block.CraftBlock;
|
|
+import org.bukkit.event.block.BlockPistonRetractEvent;
|
|
+import org.bukkit.event.block.BlockPistonExtendEvent;
|
|
+// CraftBukkit end
|
|
+
|
|
public class BlockPiston extends Block {
|
|
|
|
public static final BlockStateDirection FACING = BlockStateDirection.of("facing");
|
|
@@ -56,6 +68,17 @@
|
|
world.playBlockAction(blockposition, this, 0, enumdirection.a());
|
|
}
|
|
} else if (!flag && ((Boolean) iblockdata.get(BlockPiston.EXTENDED)).booleanValue()) {
|
|
+ // CraftBukkit start
|
|
+ if (!this.N) {
|
|
+ org.bukkit.block.Block block = world.getWorld().getBlockAt(blockposition.getX(), blockposition.getY(), blockposition.getZ());
|
|
+ BlockPistonRetractEvent event = new BlockPistonRetractEvent(block, ImmutableList.<org.bukkit.block.Block>of(), CraftBlock.notchToBlockFace(enumdirection));
|
|
+ world.getServer().getPluginManager().callEvent(event);
|
|
+
|
|
+ if (event.isCancelled()) {
|
|
+ return;
|
|
+ }
|
|
+ }
|
|
+ // CraftBukkit end
|
|
world.setTypeAndData(blockposition, iblockdata.set(BlockPiston.EXTENDED, Boolean.valueOf(false)), 2);
|
|
world.playBlockAction(blockposition, this, 1, enumdirection.a());
|
|
}
|
|
@@ -146,7 +169,7 @@
|
|
}
|
|
}
|
|
|
|
- if (!flag1 && block.getMaterial() != Material.AIR && a(block, world, blockposition1, enumdirection.opposite(), false) && (block.k() == 0 || block == Blocks.PISTON || block == Blocks.STICKY_PISTON)) {
|
|
+ if (!flag1 && a(block, world, blockposition1, enumdirection.opposite(), false) && (block.k() == 0 || block == Blocks.PISTON || block == Blocks.STICKY_PISTON)) { // CraftBukkit - remove 'block.getMaterial() != Material.AIR' condition
|
|
this.a(world, blockposition, enumdirection, false);
|
|
}
|
|
} else {
|
|
@@ -286,10 +309,53 @@
|
|
if (!pistonextendschecker.a()) {
|
|
return false;
|
|
} else {
|
|
+ // CraftBukkit start
|
|
+ final org.bukkit.block.Block bblock = world.getWorld().getBlockAt(blockposition.getX(), blockposition.getY(), blockposition.getZ());
|
|
+
|
|
+ final List<BlockPosition> moved = pistonextendschecker.getMovedBlocks();
|
|
+ final List<BlockPosition> broken = pistonextendschecker.getBrokenBlocks();
|
|
+
|
|
+ List<org.bukkit.block.Block> blocks = new AbstractList<org.bukkit.block.Block>() {
|
|
+
|
|
+ @Override
|
|
+ public int size() {
|
|
+ return moved.size() + broken.size();
|
|
+ }
|
|
+
|
|
+ @Override
|
|
+ public org.bukkit.block.Block get(int index) {
|
|
+ if (index >= size() || index < 0) {
|
|
+ throw new ArrayIndexOutOfBoundsException(index);
|
|
+ }
|
|
+ BlockPosition pos = (BlockPosition) (index < moved.size() ? moved.get(index) : broken.get(index - moved.size()));
|
|
+ return bblock.getWorld().getBlockAt(pos.getX(), pos.getY(), pos.getZ());
|
|
+ }
|
|
+ };
|
|
+
|
|
int i = list.size() + list1.size();
|
|
Block[] ablock = new Block[i];
|
|
EnumDirection enumdirection1 = flag ? enumdirection : enumdirection.opposite();
|
|
|
|
+ org.bukkit.event.block.BlockPistonEvent event;
|
|
+ if (flag) {
|
|
+ event = new BlockPistonExtendEvent(bblock, blocks, CraftBlock.notchToBlockFace(enumdirection1));
|
|
+ } else {
|
|
+ event = new BlockPistonRetractEvent(bblock, blocks, CraftBlock.notchToBlockFace(enumdirection1));
|
|
+ }
|
|
+ world.getServer().getPluginManager().callEvent(event);
|
|
+
|
|
+ if (event.isCancelled()) {
|
|
+ for (BlockPosition b : broken) {
|
|
+ world.notify(b);
|
|
+ }
|
|
+ for (BlockPosition b : moved) {
|
|
+ world.notify(b);
|
|
+ world.notify(b.shift(enumdirection1));
|
|
+ }
|
|
+ return false;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
+
|
|
int j;
|
|
BlockPosition blockposition1;
|
|
|