#1054: Add FireworkMeta#hasPower

By: Doc <nachito94@msn.com>
This commit is contained in:
Bukkit/Spigot 2024-08-24 07:44:42 +10:00
parent baffaf0195
commit 8d803e683c

View File

@ -75,10 +75,21 @@ public interface FireworkMeta extends ItemMeta {
*/
boolean hasEffects();
/**
* Get whether this firework has power set by component.
*
* @return true if it has power set, false if there are no power set
*/
boolean hasPower();
/**
* Gets the approximate height the firework will fly.
* <br>
* Plugins should check that hasPower() returns <code>true</code>
* before calling this method.
*
* @return approximate flight height of the firework.
* @see #hasPower()
*/
int getPower();