Factions/src/com/massivecraft/factions/event/FactionsEventLandClaim.java

41 lines
1.1 KiB
Java
Raw Normal View History

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
{
2013-04-10 09:34:14 +02:00
// -------------------------------------------- //
// REQUIRED EVENT CODE
// -------------------------------------------- //
private static final HandlerList handlers = new HandlerList();
2013-04-10 09:34:14 +02:00
@Override public HandlerList getHandlers() { return handlers; }
public static HandlerList getHandlerList() { return handlers; }
2013-04-10 09:34:14 +02:00
// -------------------------------------------- //
// FIELDS
// -------------------------------------------- //
2013-04-10 09:34:14 +02:00
private final Faction faction;
public Faction getFaction() { return this.faction; }
private final PS chunk;
public PS getChunk() { return this.chunk; }
2013-04-10 09:34:14 +02:00
// -------------------------------------------- //
// CONSTRUCT
// -------------------------------------------- //
public FactionsEventLandClaim(CommandSender sender, Faction faction, PS chunk)
2013-04-10 09:34:14 +02:00
{
super(sender);
2013-04-10 09:34:14 +02:00
this.faction = faction;
this.chunk = chunk.getChunk(true);
2013-04-10 09:34:14 +02:00
}
}