2013-04-19 12:44:28 +02:00
|
|
|
package com.massivecraft.factions.event;
|
|
|
|
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
import org.bukkit.event.HandlerList;
|
|
|
|
|
2014-06-04 16:47:01 +02:00
|
|
|
public class EventFactionsHomeTeleport extends EventFactionsAbstractSender
|
2013-04-19 12:44:28 +02:00
|
|
|
{
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// REQUIRED EVENT CODE
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
|
|
|
private static final HandlerList handlers = new HandlerList();
|
|
|
|
@Override public HandlerList getHandlers() { return handlers; }
|
|
|
|
public static HandlerList getHandlerList() { return handlers; }
|
|
|
|
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// CONSTRUCT
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
2014-06-04 16:47:01 +02:00
|
|
|
public EventFactionsHomeTeleport(CommandSender sender)
|
2013-04-19 12:44:28 +02:00
|
|
|
{
|
|
|
|
super(sender);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|