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