41 lines
1.1 KiB
Java
41 lines
1.1 KiB
Java
package com.massivecraft.factions.event;
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
import org.bukkit.event.HandlerList;
|
|
|
|
import com.massivecraft.factions.Faction;
|
|
import com.massivecraft.mcore.ps.PS;
|
|
|
|
public class FactionsEventLandClaim extends FactionsEventAbstractSender
|
|
{
|
|
// -------------------------------------------- //
|
|
// REQUIRED EVENT CODE
|
|
// -------------------------------------------- //
|
|
|
|
private static final HandlerList handlers = new HandlerList();
|
|
@Override public HandlerList getHandlers() { return handlers; }
|
|
public static HandlerList getHandlerList() { return handlers; }
|
|
|
|
// -------------------------------------------- //
|
|
// FIELDS
|
|
// -------------------------------------------- //
|
|
|
|
private final Faction faction;
|
|
public Faction getFaction() { return this.faction; }
|
|
|
|
private final PS chunk;
|
|
public PS getChunk() { return this.chunk; }
|
|
|
|
// -------------------------------------------- //
|
|
// CONSTRUCT
|
|
// -------------------------------------------- //
|
|
|
|
public FactionsEventLandClaim(CommandSender sender, Faction faction, PS chunk)
|
|
{
|
|
super(sender);
|
|
this.faction = faction;
|
|
this.chunk = chunk.getChunk(true);
|
|
}
|
|
|
|
}
|