[Bleeding] Added PotionSplashEvent for splash potions. Closes BUKKIT-307

By: Zeerix <zeerix@draig.de>
This commit is contained in:
Bukkit/Spigot
2012-01-20 08:16:45 +01:00
parent f2ec9604cb
commit b3642a04e1
3 changed files with 99 additions and 0 deletions

View File

@@ -795,6 +795,12 @@ public abstract class Event implements Serializable {
* @see org.bukkit.event.entity.ProjectileHitEvent
*/
PROJECTILE_HIT(Category.ENTITY, ProjectileHitEvent.class),
/**
* Called when a splash potion hits an area
*
* @see org.bukkit.event.entity.PotionSplashEvent
*/
POTION_SPLASH(Category.ENTITY, PotionSplashEvent.class),
/**
* Called when a Slime splits into smaller Slimes upon death
*