Added the single most important event ever to be conceived
This commit is contained in:
47
src/org/bukkit/event/block/BlockPhysicsEvent.java
Normal file
47
src/org/bukkit/event/block/BlockPhysicsEvent.java
Normal file
@@ -0,0 +1,47 @@
|
||||
|
||||
package org.bukkit.event.block;
|
||||
|
||||
import org.bukkit.Block;
|
||||
import org.bukkit.ItemStack;
|
||||
import org.bukkit.event.Event;
|
||||
|
||||
/**
|
||||
* Thrown when a block physics check is called
|
||||
*/
|
||||
public class BlockPhysicsEvent extends BlockEvent {
|
||||
private final Block block;
|
||||
private final int changed;
|
||||
|
||||
public BlockPhysicsEvent(final Event.Type type, final Block block, final int changed) {
|
||||
super(type);
|
||||
this.block = block;
|
||||
this.changed = changed;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the block currently undergoing a physics check
|
||||
*
|
||||
* @return Block to check physics on
|
||||
*/
|
||||
public Block getBlock() {
|
||||
return block;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the type of block that changed, causing this event
|
||||
*
|
||||
* @return Changed block's type ID
|
||||
*/
|
||||
public int getChangedTypeID() {
|
||||
return changed;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the type of block that changed, causing this event
|
||||
*
|
||||
* @return Changed block's type
|
||||
*/
|
||||
public ItemStack.Type getChangedType() {
|
||||
return ItemStack.Type.getType(changed); // TODO: Move type to its own file
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user