use of com.plotsquared.core.events.PlotClaimedNotifyEvent in project PlotSquared by IntellectualSites.
the class EventDispatcher method callPlotClaimedNotify.
public PlotClaimedNotifyEvent callPlotClaimedNotify(Plot plot, boolean auto) {
PlotClaimedNotifyEvent event = new PlotClaimedNotifyEvent(plot, auto);
callEvent(event);
return event;
}
Aggregations