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