mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-29 16:46:45 +01:00
56 lines
1.3 KiB
Java
56 lines
1.3 KiB
Java
package com.plotsquared.sponge.events;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import org.spongepowered.api.event.Cancellable;
|
|
import org.spongepowered.api.event.cause.Cause;
|
|
import org.spongepowered.api.event.impl.AbstractEvent;
|
|
import org.spongepowered.api.world.World;
|
|
|
|
import com.intellectualcrafters.plot.object.PlotId;
|
|
|
|
public class PlotUnlinkEvent extends AbstractEvent implements Cancellable {
|
|
private final ArrayList<PlotId> plots;
|
|
private final World world;
|
|
private boolean cancelled;
|
|
|
|
/**
|
|
* Called when a mega-plot is unlinked.
|
|
*
|
|
* @param world World in which the event occurred
|
|
* @param plots Plots that are involved in the event
|
|
*/
|
|
public PlotUnlinkEvent(final World world, final ArrayList<PlotId> plots) {
|
|
this.plots = plots;
|
|
this.world = world;
|
|
}
|
|
|
|
/**
|
|
* Get the plots involved
|
|
*
|
|
* @return PlotId
|
|
*/
|
|
public ArrayList<PlotId> getPlots() {
|
|
return plots;
|
|
}
|
|
|
|
public World getWorld() {
|
|
return world;
|
|
}
|
|
|
|
@Override
|
|
public boolean isCancelled() {
|
|
return cancelled;
|
|
}
|
|
|
|
@Override
|
|
public void setCancelled(final boolean cancel) {
|
|
cancelled = cancel;
|
|
}
|
|
|
|
@Override
|
|
public Cause getCause() {
|
|
return null;
|
|
}
|
|
}
|