From cd94e3c9b03d7c2adc0a0112dbf03d27e612ead1 Mon Sep 17 00:00:00 2001 From: Thinkofdeath Date: Mon, 19 Jan 2015 23:28:15 +0000 Subject: Give BlockPistonRetractEvent a list of pulled blocks for sticky pistons --- .../org/bukkit/event/block/BlockPistonRetractEvent.java | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/main/java/org/bukkit/event/block/BlockPistonRetractEvent.java b/src/main/java/org/bukkit/event/block/BlockPistonRetractEvent.java index 0190c4c4..da875f7a 100644 --- a/src/main/java/org/bukkit/event/block/BlockPistonRetractEvent.java +++ b/src/main/java/org/bukkit/event/block/BlockPistonRetractEvent.java @@ -1,5 +1,6 @@ package org.bukkit.event.block; +import java.util.List; import org.bukkit.Location; import org.bukkit.block.Block; import org.bukkit.block.BlockFace; @@ -10,7 +11,9 @@ import org.bukkit.event.HandlerList; */ public class BlockPistonRetractEvent extends BlockPistonEvent { private static final HandlerList handlers = new HandlerList(); - public BlockPistonRetractEvent(final Block block, final BlockFace direction) { + private List blocks; + + public BlockPistonRetractEvent(final Block block, final List blocks, final BlockFace direction) { super(block, direction); } @@ -20,9 +23,20 @@ public class BlockPistonRetractEvent extends BlockPistonEvent { * * @return The possible location of the possibly moving block. */ + @Deprecated public Location getRetractLocation() { return getBlock().getRelative(getDirection(), 2).getLocation(); } + + /** + * Get an immutable list of the blocks which will be moved by the + * extending. + * + * @return Immutable list of the moved blocks. + */ + public List getBlocks() { + return blocks; + } @Override public HandlerList getHandlers() { -- cgit v1.2.3