13
0
geforkt von Mirrors/Paper

Add API methods to control if armour stands can move

Dieser Commit ist enthalten in:
Riley Park 2016-12-21 11:47:25 -06:00
Ursprung e5e56e1ee1
Commit 614404fa55

Datei anzeigen

@ -344,4 +344,21 @@ public interface ArmorStand extends LivingEntity {
*/
ADDING;
}
// Paper start
/**
* Tests if this armor stand can move.
*
* <p>The default value is {@code true}.</p>
*
* @return {@code true} if this armour stand can move, {@code false} otherwise
*/
boolean canMove();
/**
* Sets if this armor stand can move.
*
* @param move {@code true} if this armour stand can move, {@code false} otherwise
*/
void setCanMove(boolean move);
// Paper end
}