Added BlockSpread, BlockForm and BlockFade events.

By: EvilSeph <evilseph@unaligned.org>
This commit is contained in:
Bukkit/Spigot
2011-06-17 14:46:01 -04:00
parent 5d515f5a85
commit c3373081e2
6 changed files with 193 additions and 1 deletions

View File

@@ -376,6 +376,24 @@ public abstract class Event implements Serializable {
* @see org.bukkit.event.block.SnowFormEvent
*/
SNOW_FORM (Category.BLOCK),
/**
* Called when a block is formed based on world conditions
*
* @see org.bukkit.event.block.BlockFormEvent
*/
BLOCK_FORM (Category.BLOCK),
/**
* Called when a block spreads based on world conditions
*
* @see org.bukkit.event.block.BlockSpreadEvent
*/
BLOCK_SPREAD (Category.BLOCK),
/**
* Called when a block fades, melts or disappears based on world conditions
*
* @see org.bukkit.event.block.BlockFadeEvent
*/
BLOCK_FADE (Category.BLOCK),
/**
* INVENTORY EVENTS