Fixed BlockFromToEvent not knowing source block from destination block.

By: sk89q <the.sk89q@gmail.com>
This commit is contained in:
Bukkit/Spigot 2011-01-15 21:20:23 -08:00
parent a92c284ca1
commit b105f07fa7

View file

@ -9,14 +9,14 @@ import org.bukkit.event.Event;
* Holds information for events with a source block and a destination block
*/
public class BlockFromToEvent extends BlockEvent implements Cancellable {
protected Block from;
protected Block to;
protected BlockFace face;
protected boolean cancel;
public BlockFromToEvent(final Event.Type type, final Block block, final BlockFace face) {
super(type, block);
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;
}
@ -34,8 +34,8 @@ public class BlockFromToEvent extends BlockEvent implements Cancellable {
*
* @return Block the faced block
*/
public Block getFromBlock() {
return from;
public Block getToBlock() {
return to;
}
public boolean isCancelled() {