use of com.plotsquared.core.events.post.PostPlotUnlinkEvent in project PlotSquared by IntellectualSites.
the class EventDispatcher method callPostUnlink.
public PostPlotUnlinkEvent callPostUnlink(Plot plot, PlotUnlinkEvent.REASON reason) {
PostPlotUnlinkEvent event = new PostPlotUnlinkEvent(plot, reason);
callEvent(event);
return event;
}
Aggregations