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