[Bleeding] Added BlockGrowEvent. Addresses BUKKIT-104
This commit is contained in:
parent
e0eb9f914b
commit
4475ea7718
@ -19,33 +19,11 @@ import org.bukkit.event.HandlerList;
|
|||||||
*
|
*
|
||||||
* @see BlockSpreadEvent
|
* @see BlockSpreadEvent
|
||||||
*/
|
*/
|
||||||
public class BlockFormEvent extends BlockEvent implements Cancellable {
|
public class BlockFormEvent extends BlockGrowEvent implements Cancellable {
|
||||||
private static final HandlerList handlers = new HandlerList();
|
private static final HandlerList handlers = new HandlerList();
|
||||||
private boolean cancelled;
|
|
||||||
private final BlockState newState;
|
|
||||||
|
|
||||||
public BlockFormEvent(final Block block, final BlockState newState) {
|
public BlockFormEvent(final Block block, final BlockState newState) {
|
||||||
super(block);
|
super(block, newState);
|
||||||
this.block = block;
|
|
||||||
this.newState = newState;
|
|
||||||
this.cancelled = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the state of the block where it will form or spread to.
|
|
||||||
*
|
|
||||||
* @return The block state of the block where it will form or spread to
|
|
||||||
*/
|
|
||||||
public BlockState getNewState() {
|
|
||||||
return newState;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isCancelled() {
|
|
||||||
return cancelled;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCancelled(boolean cancel) {
|
|
||||||
this.cancelled = cancel;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
56
src/main/java/org/bukkit/event/block/BlockGrowEvent.java
Normal file
56
src/main/java/org/bukkit/event/block/BlockGrowEvent.java
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
package org.bukkit.event.block;
|
||||||
|
|
||||||
|
import org.bukkit.block.Block;
|
||||||
|
import org.bukkit.block.BlockState;
|
||||||
|
import org.bukkit.event.Cancellable;
|
||||||
|
import org.bukkit.event.HandlerList;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called when a block grows naturally in the world.
|
||||||
|
* <p />
|
||||||
|
* Examples:
|
||||||
|
* <ul>
|
||||||
|
* <li>Wheat</li>
|
||||||
|
* <li>Sugar Cane</li>
|
||||||
|
* <li>Cactus</li>
|
||||||
|
* <li>Watermelon</li>
|
||||||
|
* <li>Pumpkin</li>
|
||||||
|
* </ul>
|
||||||
|
* <p />
|
||||||
|
* If a Block Grow event is cancelled, the block will not grow.
|
||||||
|
*/
|
||||||
|
public class BlockGrowEvent extends BlockEvent implements Cancellable {
|
||||||
|
private static final HandlerList handlers = new HandlerList();
|
||||||
|
private final BlockState newState;
|
||||||
|
private boolean cancelled = false;
|
||||||
|
|
||||||
|
public BlockGrowEvent(final Block block, final BlockState newState) {
|
||||||
|
super(block);
|
||||||
|
this.newState = newState;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the state of the block where it will form or spread to.
|
||||||
|
*
|
||||||
|
* @return The block state for this events block
|
||||||
|
*/
|
||||||
|
public BlockState getNewState() {
|
||||||
|
return newState;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isCancelled() {
|
||||||
|
return cancelled;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCancelled(boolean cancel) {
|
||||||
|
this.cancelled = cancel;
|
||||||
|
}
|
||||||
|
|
||||||
|
public HandlerList getHandlers() {
|
||||||
|
return handlers;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static HandlerList getHandlerList() {
|
||||||
|
return handlers;
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user