Add DamageCause for FallingBlocks. Adds BUKKIT-2781

This commit is contained in:
feildmaster 2012-11-20 16:54:43 -06:00
parent 324436e99c
commit e72fb666d8

View File

@ -166,13 +166,13 @@ public class EntityDamageEvent extends EntityEvent implements Cancellable {
STARVATION, STARVATION,
/** /**
* Damage caused due to an ongoing poison effect * Damage caused due to an ongoing poison effect
* * <p />
* Damage: 1 * Damage: 1
*/ */
POISON, POISON,
/** /**
* Damage caused by being hit by a damage potion or spell * Damage caused by being hit by a damage potion or spell
* * <p />
* Damage: variable * Damage: variable
*/ */
MAGIC, MAGIC,
@ -180,6 +180,14 @@ public class EntityDamageEvent extends EntityEvent implements Cancellable {
* *
*/ */
WITHER, WITHER,
/**
* Damage caused by being hit by a falling block which deals damage
* <p />
* <b>Note:</b> Not every block deals damage
* <p />
* Damage: variable
*/
FALLING_BLOCK,
/** /**
* Custom damage. * Custom damage.
* <p /> * <p />