1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-02-18 11:22:15 +01:00

: 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();