mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-29 16:46:45 +01:00
57 lines
1.3 KiB
Java
57 lines
1.3 KiB
Java
package com.plotsquared.sponge.events;
|
|
|
|
import java.util.UUID;
|
|
|
|
import org.spongepowered.api.entity.living.player.Player;
|
|
|
|
import com.intellectualcrafters.plot.object.Plot;
|
|
|
|
public class PlayerPlotHelperEvent extends PlotEvent {
|
|
|
|
private final Player initiator;
|
|
private final boolean added;
|
|
private final UUID player;
|
|
|
|
/**
|
|
* PlayerPlotHelperEvent: Called when a plot helper is added/removed
|
|
*
|
|
* @param initiator Player that initiated the event
|
|
* @param plot Plot in which the event occurred
|
|
* @param player Player that was added/removed from the helper list
|
|
* @param added true of the player was added, false if the player was removed
|
|
*/
|
|
public PlayerPlotHelperEvent(final Player initiator, final Plot plot, final UUID player, final boolean added) {
|
|
super(plot);
|
|
this.initiator = initiator;
|
|
this.added = added;
|
|
this.player = player;
|
|
}
|
|
|
|
/**
|
|
* If a user was added
|
|
*
|
|
* @return boolean
|
|
*/
|
|
public boolean wasAdded() {
|
|
return added;
|
|
}
|
|
|
|
/**
|
|
* The player added/removed
|
|
*
|
|
* @return UUID
|
|
*/
|
|
public UUID getPlayer() {
|
|
return player;
|
|
}
|
|
|
|
/**
|
|
* The player initiating the action
|
|
*
|
|
* @return Player
|
|
*/
|
|
public Player getInitiator() {
|
|
return initiator;
|
|
}
|
|
}
|