mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-08-31 22:22:49 +00:00
SPIGOT-4372: LightningStrikeEvent cause API
This commit is contained in:
parent
a9ceda7566
commit
47b9cf30ac
1 changed files with 39 additions and 0 deletions
|
@ -12,10 +12,17 @@ public class LightningStrikeEvent extends WeatherEvent implements Cancellable {
|
|||
private static final HandlerList handlers = new HandlerList();
|
||||
private boolean canceled;
|
||||
private final LightningStrike bolt;
|
||||
private final Cause cause;
|
||||
|
||||
@Deprecated
|
||||
public LightningStrikeEvent(final World world, final LightningStrike bolt) {
|
||||
this(world, bolt, Cause.UNKNOWN);
|
||||
}
|
||||
|
||||
public LightningStrikeEvent(final World world, final LightningStrike bolt, final Cause cause) {
|
||||
super(world);
|
||||
this.bolt = bolt;
|
||||
this.cause = cause;
|
||||
}
|
||||
|
||||
public boolean isCancelled() {
|
||||
|
@ -35,6 +42,15 @@ public class LightningStrikeEvent extends WeatherEvent implements Cancellable {
|
|||
return bolt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the cause of this lightning strike.
|
||||
*
|
||||
* @return strike cause
|
||||
*/
|
||||
public Cause getCause() {
|
||||
return cause;
|
||||
}
|
||||
|
||||
@Override
|
||||
public HandlerList getHandlers() {
|
||||
return handlers;
|
||||
|
@ -43,4 +59,27 @@ public class LightningStrikeEvent extends WeatherEvent implements Cancellable {
|
|||
public static HandlerList getHandlerList() {
|
||||
return handlers;
|
||||
}
|
||||
|
||||
public enum Cause {
|
||||
/**
|
||||
* Triggered by the /summon command.
|
||||
*/
|
||||
COMMAND,
|
||||
/**
|
||||
* Triggered by an enchanted trident.
|
||||
*/
|
||||
TRIDENT,
|
||||
/**
|
||||
* Triggered by a skeleton horse trap.
|
||||
*/
|
||||
TRAP,
|
||||
/**
|
||||
* Triggered by weather.
|
||||
*/
|
||||
WEATHER,
|
||||
/**
|
||||
* Unknown trigger.
|
||||
*/
|
||||
UNKNOWN;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue