Excluded armor stands from //butcher by default.

Someone got lazy and just made armor stands a living entity instead of extracting an ArmorEquippable interface.
This commit is contained in:
wizjany
2015-01-22 15:48:45 -05:00
parent dc6ffae500
commit ec9c77c31b
6 changed files with 35 additions and 13 deletions

View File

@ -148,4 +148,10 @@ public interface EntityType {
*/
boolean isTagged();
/**
* Test whether the entity is an armor stand.
*
* @return true if an armor stand
*/
boolean isArmorStand();
}