use of me.andrew28.addons.conquer.api.events.ConquerUnclaimAllEvent in project Conquer by xXAndrew28Xx.
the class SFEventForwarder method onUnclaimAll.
@EventHandler
public void onUnclaimAll(LandUnclaimAllEvent event) {
ConquerUnclaimAllEvent forwardEvent = new ConquerUnclaimAllEvent(SFFaction.get(plugin, event.getFaction()), SFPlayer.get(plugin, event.getfPlayer()));
callEvent(forwardEvent);
if (forwardEvent.isCancelled()) {
event.setCancelled(true);
}
}
use of me.andrew28.addons.conquer.api.events.ConquerUnclaimAllEvent in project Conquer by xXAndrew28Xx.
the class MSEventForwarder method onClaimChange.
@EventHandler
public void onClaimChange(EventFactionsChunksChange event) {
ConquerFaction faction = MSFaction.get(plugin, event.getNewFaction());
ConquerPlayer player = MSPlayer.get(plugin, event.getMPlayer());
Set<PS> chunks = event.getChunks();
Map<PS, EventFactionsChunkChangeType> chunkTypeMap = event.getChunkType();
// Check if it's an unclaim all
if (chunks.size() == faction.getClaims().length && chunkTypeMap.values().stream().allMatch(type -> type == EventFactionsChunkChangeType.SELL)) {
ConquerUnclaimAllEvent forwardEvent = new ConquerUnclaimAllEvent(faction, player);
callEvent(forwardEvent);
if (forwardEvent.isCancelled()) {
event.setCancelled(true);
}
}
for (PS chunk : chunks) {
EventFactionsChunkChangeType type = chunkTypeMap.get(chunk);
ConquerClaim claim = MSClaim.get(plugin, chunk);
Event forwardEvent;
switch(type) {
case NONE:
continue;
case BUY:
forwardEvent = new ConquerLandClaimEvent(claim, true, faction, player);
break;
case CONQUER:
case PILLAGE:
forwardEvent = new ConquerLandClaimEvent(claim, false, faction, player);
break;
default:
return;
}
callEvent(forwardEvent);
if (((Cancellable) forwardEvent).isCancelled()) {
event.setCancelled(true);
return;
}
}
}
use of me.andrew28.addons.conquer.api.events.ConquerUnclaimAllEvent in project Conquer by xXAndrew28Xx.
the class FOEventForwarder method onUnclaimAll.
@EventHandler
public void onUnclaimAll(LandUnclaimAllEvent event) {
ConquerUnclaimAllEvent forwardEvent = new ConquerUnclaimAllEvent(FOFaction.get(plugin, event.getFaction()), FOPlayer.get(plugin, event.getFPlayer()));
callEvent(forwardEvent);
if (forwardEvent.isCancelled()) {
// In some versions of FactionsOne, it is cancelled, some others, it's not
if (event instanceof Cancellable) {
((Cancellable) event).setCancelled(true);
}
}
}
use of me.andrew28.addons.conquer.api.events.ConquerUnclaimAllEvent in project Conquer by xXAndrew28Xx.
the class FUEventForwarder method onUnclaimAll.
@EventHandler
public void onUnclaimAll(LandUnclaimAllEvent event) {
ConquerUnclaimAllEvent forwardEvent = new ConquerUnclaimAllEvent(FUFaction.get(plugin, event.getFaction()), FUPlayer.get(plugin, event.getfPlayer()));
callEvent(forwardEvent);
if (forwardEvent.isCancelled()) {
event.setCancelled(true);
}
}
Aggregations