38 lines
1.1 KiB
Java
38 lines
1.1 KiB
Java
|
package com.massivecraft.factions.cmd.req;
|
||
|
|
||
|
import org.bukkit.command.CommandSender;
|
||
|
|
||
|
import com.massivecraft.factions.entity.UPlayer;
|
||
|
import com.massivecraft.mcore.cmd.MCommand;
|
||
|
import com.massivecraft.mcore.cmd.req.ReqAbstract;
|
||
|
import com.massivecraft.mcore.util.Txt;
|
||
|
|
||
|
public class ReqHasFaction extends ReqAbstract
|
||
|
{
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
// -------------------------------------------- //
|
||
|
// INSTANCE & CONSTRUCT
|
||
|
// -------------------------------------------- //
|
||
|
|
||
|
private static ReqHasFaction i = new ReqHasFaction();
|
||
|
public static ReqHasFaction get() { return i; }
|
||
|
|
||
|
// -------------------------------------------- //
|
||
|
// OVERRIDE
|
||
|
// -------------------------------------------- //
|
||
|
|
||
|
@Override
|
||
|
public boolean apply(CommandSender sender, MCommand command)
|
||
|
{
|
||
|
return UPlayer.get(sender).hasFaction();
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public String createErrorMessage(CommandSender sender, MCommand command)
|
||
|
{
|
||
|
return Txt.parse("<b>You must belong to a faction to "+(command == null ? "do that" : command.getDesc())+".");
|
||
|
}
|
||
|
|
||
|
}
|