mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-04-03 18:16:23 +02:00
58 lines
1.2 KiB
Java
58 lines
1.2 KiB
Java
package com.plotsquared.sponge.events;
|
|
|
|
import com.intellectualcrafters.plot.object.Plot;
|
|
import org.spongepowered.api.event.Cancellable;
|
|
import org.spongepowered.api.event.cause.Cause;
|
|
import org.spongepowered.api.event.impl.AbstractEvent;
|
|
|
|
import com.intellectualcrafters.plot.object.PlotId;
|
|
|
|
public class PlotClearEvent extends AbstractEvent implements Cancellable {
|
|
|
|
private boolean cancelled;
|
|
private Plot plot;
|
|
|
|
/**
|
|
* PlotDeleteEvent: Called when a plot is cleared
|
|
*
|
|
* @param plot The plot that was cleared
|
|
*/
|
|
|
|
public PlotClearEvent(Plot plot) {
|
|
this.plot = plot;
|
|
}
|
|
|
|
/**
|
|
* Get the PlotId
|
|
*
|
|
* @return PlotId
|
|
*/
|
|
public PlotId getPlotId() {
|
|
return plot.getId();
|
|
}
|
|
|
|
/**
|
|
* Get the world name
|
|
*
|
|
* @return String
|
|
*/
|
|
public String getWorld() {
|
|
return plot.getArea().worldname;
|
|
}
|
|
|
|
@Override
|
|
public boolean isCancelled() {
|
|
return cancelled;
|
|
}
|
|
|
|
@Override
|
|
public void setCancelled(final boolean cancel) {
|
|
cancelled = cancel;
|
|
}
|
|
|
|
@Override
|
|
public Cause getCause() {
|
|
return null;
|
|
}
|
|
}
|