Commits

Doc authored and md_5 committed 9dd562554ce
SPIGOT-7527, #944: Add WindCharge#explode()
No tags

src/main/java/org/bukkit/entity/WindCharge.java

Modified
1 1 package org.bukkit.entity;
2 2
3 3 import org.bukkit.MinecraftExperimental;
4 4 import org.jetbrains.annotations.ApiStatus;
5 5
6 6 /**
7 7 * Represents a Wind Charge.
8 8 */
9 9 @MinecraftExperimental
10 10 @ApiStatus.Experimental
11 11 public interface WindCharge extends Fireball {
12 +
13 + /**
14 + * Immediately explode this WindCharge.
15 + */
16 + public void explode();
17 +
12 18 }

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut