use of com.plotsquared.core.events.PlotComponentSetEvent in project PlotSquared by IntellectualSites.
the class EventDispatcher method callComponentSet.
public PlotComponentSetEvent callComponentSet(Plot plot, String component, Pattern pattern) {
PlotComponentSetEvent event = new PlotComponentSetEvent(plot, component, pattern);
callEvent(event);
return event;
}
Aggregations