mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-04-03 18:16:23 +02:00
40 lines
849 B
Java
40 lines
849 B
Java
package com.plotsquared.sponge.events;
|
|
|
|
import org.spongepowered.api.event.impl.AbstractEvent;
|
|
|
|
import com.intellectualcrafters.plot.object.PlotId;
|
|
|
|
public class PlotDeleteEvent extends AbstractEvent {
|
|
private final PlotId id;
|
|
private final String world;
|
|
|
|
/**
|
|
* PlotDeleteEvent: Called when a plot is deleted
|
|
*
|
|
* @param world The world in which the plot was deleted
|
|
* @param id The ID of the plot that was deleted
|
|
*/
|
|
public PlotDeleteEvent(final String world, final PlotId id) {
|
|
this.id = id;
|
|
this.world = world;
|
|
}
|
|
|
|
/**
|
|
* Get the PlotId
|
|
*
|
|
* @return PlotId
|
|
*/
|
|
public PlotId getPlotId() {
|
|
return id;
|
|
}
|
|
|
|
/**
|
|
* Get the world name
|
|
*
|
|
* @return String
|
|
*/
|
|
public String getWorld() {
|
|
return world;
|
|
}
|
|
}
|