Added EntityBlockFormEvent for block forming by entity actions (snowmen etc). Thanks to fieldmaster for the PR.

By: Nathan Adams <dinnerbone@dinnerbone.com>
This commit is contained in:
Bukkit/Spigot 2012-01-15 09:13:00 +00:00
parent f320f18067
commit 72ce6fab3e

View File

@ -0,0 +1,32 @@
package org.bukkit.event.block;
import org.bukkit.block.Block;
import org.bukkit.block.BlockState;
import org.bukkit.entity.Entity;
/**
* Called when a block is formed by entities.
*<p />
* Examples:
*<ul>
* <li>Snow formed by a {@link org.bukkit.entity.Snowman}.</li>
* </ul>
*/
public class EntityBlockFormEvent extends BlockFormEvent {
private Entity entity;
public EntityBlockFormEvent(Entity entity, Block block, BlockState blockstate) {
super(block, blockstate);
this.entity = entity;
}
/**
* Get the entity that formed the block.
*
* @return Entity involved in event
*/
public Entity getEntity() {
return entity;
}
}