Fixed BlockFromToEvent not knowing source block from destination block.
This commit is contained in:
parent
101fffc82f
commit
a3da4005e4
@ -9,14 +9,14 @@ import org.bukkit.event.Event;
|
|||||||
* Holds information for events with a source block and a destination block
|
* Holds information for events with a source block and a destination block
|
||||||
*/
|
*/
|
||||||
public class BlockFromToEvent extends BlockEvent implements Cancellable {
|
public class BlockFromToEvent extends BlockEvent implements Cancellable {
|
||||||
protected Block from;
|
protected Block to;
|
||||||
protected BlockFace face;
|
protected BlockFace face;
|
||||||
protected boolean cancel;
|
protected boolean cancel;
|
||||||
|
|
||||||
public BlockFromToEvent(final Event.Type type, final Block block, final BlockFace face) {
|
public BlockFromToEvent(final Event.Type type, final Block block, final BlockFace face) {
|
||||||
super(type, block);
|
super(type, block);
|
||||||
this.face = face;
|
this.face = face;
|
||||||
this.from = block.getRelative(face.getModX(), face.getModY(), face.getModZ());
|
this.to = block.getRelative(face.getModX(), face.getModY(), face.getModZ());
|
||||||
this.cancel = false;
|
this.cancel = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -34,8 +34,8 @@ public class BlockFromToEvent extends BlockEvent implements Cancellable {
|
|||||||
*
|
*
|
||||||
* @return Block the faced block
|
* @return Block the faced block
|
||||||
*/
|
*/
|
||||||
public Block getFromBlock() {
|
public Block getToBlock() {
|
||||||
return from;
|
return to;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isCancelled() {
|
public boolean isCancelled() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user