2015-09-11 12:09:22 +02:00
|
|
|
package com.plotsquared.bukkit.events;
|
|
|
|
|
2016-03-23 02:41:37 +01:00
|
|
|
import com.intellectualcrafters.plot.object.Plot;
|
2015-09-11 12:09:22 +02:00
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
import org.bukkit.event.HandlerList;
|
|
|
|
import org.bukkit.event.player.PlayerEvent;
|
|
|
|
|
2015-09-13 06:04:31 +02:00
|
|
|
public class PlayerEnterPlotEvent extends PlayerEvent {
|
2016-03-23 02:41:37 +01:00
|
|
|
|
|
|
|
private static final HandlerList handlers = new HandlerList();
|
2015-09-11 12:09:22 +02:00
|
|
|
private final Plot plot;
|
2016-03-23 02:41:37 +01:00
|
|
|
|
2015-09-11 12:09:22 +02:00
|
|
|
/**
|
2016-03-23 18:16:05 +01:00
|
|
|
* Called when a player leaves a plot.
|
2015-09-11 12:09:22 +02:00
|
|
|
*
|
|
|
|
* @param player Player that entered the plot
|
|
|
|
* @param plot Plot that was entered
|
|
|
|
*/
|
2016-03-23 02:41:37 +01:00
|
|
|
public PlayerEnterPlotEvent(Player player, Plot plot) {
|
2015-09-11 12:09:22 +02:00
|
|
|
super(player);
|
|
|
|
this.plot = plot;
|
|
|
|
}
|
2016-03-23 02:41:37 +01:00
|
|
|
|
2015-09-13 06:04:31 +02:00
|
|
|
public static HandlerList getHandlerList() {
|
2015-09-11 12:09:22 +02:00
|
|
|
return handlers;
|
|
|
|
}
|
2016-03-23 02:41:37 +01:00
|
|
|
|
2015-09-11 12:09:22 +02:00
|
|
|
/**
|
2016-03-23 18:16:05 +01:00
|
|
|
* Get the plot involved.
|
2015-09-11 12:09:22 +02:00
|
|
|
*
|
|
|
|
* @return Plot
|
|
|
|
*/
|
2015-09-13 06:04:31 +02:00
|
|
|
public Plot getPlot() {
|
2016-03-23 02:41:37 +01:00
|
|
|
return this.plot;
|
2015-09-11 12:09:22 +02:00
|
|
|
}
|
2016-03-23 02:41:37 +01:00
|
|
|
|
2015-09-11 12:09:22 +02:00
|
|
|
@Override
|
2015-09-13 06:04:31 +02:00
|
|
|
public HandlerList getHandlers() {
|
2015-09-11 12:09:22 +02:00
|
|
|
return handlers;
|
|
|
|
}
|
|
|
|
}
|