mirror of
https://github.com/PaperMC/Paper.git
synced 2025-02-18 11:22:15 +01:00
parent
baffaf0195
commit
8d803e683c
1 changed files with 11 additions and 0 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue