Make EventFactionsFactionShowAsync
This commit is contained in:
@ -23,4 +23,10 @@ public abstract class EventFactionsAbstractSender extends EventMassiveCore
|
||||
{
|
||||
this.sender = sender;
|
||||
}
|
||||
|
||||
public EventFactionsAbstractSender(boolean async, CommandSender sender)
|
||||
{
|
||||
super(async);
|
||||
this.sender = sender;
|
||||
}
|
||||
}
|
||||
|
@ -9,7 +9,7 @@ import org.bukkit.event.HandlerList;
|
||||
import com.massivecraft.factions.entity.Faction;
|
||||
import com.massivecraft.massivecore.PriorityLines;
|
||||
|
||||
public class EventFactionsFactionShow extends EventFactionsAbstractSender
|
||||
public class EventFactionsFactionShowAsync extends EventFactionsAbstractSender
|
||||
{
|
||||
// -------------------------------------------- //
|
||||
// REQUIRED EVENT CODE
|
||||
@ -33,9 +33,9 @@ public class EventFactionsFactionShow extends EventFactionsAbstractSender
|
||||
// CONSTRUCT
|
||||
// -------------------------------------------- //
|
||||
|
||||
public EventFactionsFactionShow(CommandSender sender, Faction faction)
|
||||
public EventFactionsFactionShowAsync(CommandSender sender, Faction faction)
|
||||
{
|
||||
super(sender);
|
||||
super(true, sender);
|
||||
this.faction = faction;
|
||||
this.idPriorityLiness = new HashMap<String, PriorityLines>();
|
||||
}
|
Reference in New Issue
Block a user