Skip to content

Commit

Permalink
7.10.13
Browse files Browse the repository at this point in the history
  • Loading branch information
Angeschossen committed Nov 28, 2024
1 parent 321c69c commit 57a2587
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,20 @@ public interface CaptureFlag extends ExpressionEntity {
*/
@NotNull BlockPosition getPosition();

/**
* Set the seconds between each firework spawned. This is an approximate value as fireworks only spawn when the flag is ticked.
*
* @param interval if smaller than 1, disabled firework spawning
*/
void setFireworkSpawnInterval(long interval);

/**
* Get the seconds between each firework spawned. This is an approximate value as fireworks only spawn when the flag is ticked.
*
* @return if smaller than 1, firework spawning is disabled
*/
long getLastFireworkSpawned();

/**
* Get the team that placed the flag.
*
Expand Down

0 comments on commit 57a2587

Please sign in to comment.