mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-27 23:10:16 +01:00
BlockPhysics can be canceled
By: Dinnerbone <dinnerbone@dinnerbone.com>
This commit is contained in:
parent
56bf34db1e
commit
fabb5e628a
1 changed files with 21 additions and 0 deletions
|
@ -11,6 +11,7 @@ import org.bukkit.event.Event;
|
|||
public class BlockPhysicsEvent extends BlockEvent {
|
||||
private final Block block;
|
||||
private final int changed;
|
||||
private boolean cancel = false;
|
||||
|
||||
public BlockPhysicsEvent(final Event.Type type, final Block block, final int changed) {
|
||||
super(type);
|
||||
|
@ -44,4 +45,24 @@ public class BlockPhysicsEvent extends BlockEvent {
|
|||
public ItemStack.Type getChangedType() {
|
||||
return ItemStack.Type.getType(changed); // TODO: Move type to its own file
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the cancellation state of this event. A cancelled event will not
|
||||
* be executed in the server, but will still pass to other plugins
|
||||
*
|
||||
* @return true if this event is cancelled
|
||||
*/
|
||||
public boolean isCancelled() {
|
||||
return cancel;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the cancellation state of this event. A cancelled event will not
|
||||
* be executed in the server, but will still pass to other plugins
|
||||
*
|
||||
* @param cancel true if you wish to cancel this event
|
||||
*/
|
||||
public void setCancelled(boolean cancel) {
|
||||
this.cancel = cancel;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue