mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-23 13:46:45 +01:00
df630f9be1
- No license is the same as all rights reserved - There's already a license at the root of the project - The message was not in most files. easier to remove it - Support link isn't valid - No longer just the bukkit API
46 lines
917 B
Java
46 lines
917 B
Java
package com.plotsquared.bukkit.events;
|
|
|
|
import com.intellectualcrafters.plot.object.Plot;
|
|
import com.intellectualcrafters.plot.object.PlotId;
|
|
import org.bukkit.event.HandlerList;
|
|
|
|
/**
|
|
* Called when a plot is deleted
|
|
*
|
|
*/
|
|
public class PlotDeleteEvent extends PlotEvent {
|
|
|
|
private static final HandlerList handlers = new HandlerList();
|
|
|
|
public PlotDeleteEvent(Plot plot) {
|
|
super(plot);
|
|
}
|
|
|
|
public static HandlerList getHandlerList() {
|
|
return handlers;
|
|
}
|
|
|
|
/**
|
|
* Get the PlotId
|
|
*
|
|
* @return PlotId
|
|
*/
|
|
public PlotId getPlotId() {
|
|
return getPlot().getId();
|
|
}
|
|
|
|
/**
|
|
* Get the world name
|
|
*
|
|
* @return String
|
|
*/
|
|
public String getWorld() {
|
|
return getPlot().getArea().worldname;
|
|
}
|
|
|
|
@Override
|
|
public HandlerList getHandlers() {
|
|
return handlers;
|
|
}
|
|
}
|