use of com.plotsquared.core.events.post.PostPlayerAutoPlotEvent in project PlotSquared by IntellectualSites.
the class EventDispatcher method callPostAuto.
public PostPlayerAutoPlotEvent callPostAuto(PlotPlayer<?> player, Plot plot) {
PostPlayerAutoPlotEvent event = new PostPlayerAutoPlotEvent(player, plot);
callEvent(event);
return event;
}
Aggregations