2013-04-25 13:53:22 +02:00
|
|
|
package com.massivecraft.factions.cmd.req;
|
|
|
|
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
|
2014-09-17 13:17:33 +02:00
|
|
|
import com.massivecraft.factions.entity.MPlayer;
|
2014-06-04 14:02:23 +02:00
|
|
|
import com.massivecraft.massivecore.cmd.MassiveCommand;
|
|
|
|
import com.massivecraft.massivecore.cmd.req.ReqAbstract;
|
2015-05-16 12:19:36 +02:00
|
|
|
import com.massivecraft.massivecore.util.MUtil;
|
2014-06-04 14:02:23 +02:00
|
|
|
import com.massivecraft.massivecore.util.Txt;
|
2013-04-25 13:53:22 +02:00
|
|
|
|
|
|
|
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
|
2014-06-04 14:02:23 +02:00
|
|
|
public boolean apply(CommandSender sender, MassiveCommand command)
|
2013-04-25 13:53:22 +02:00
|
|
|
{
|
2015-05-16 14:30:49 +02:00
|
|
|
if (MUtil.isntSender(sender)) return false;
|
|
|
|
|
2015-05-16 12:19:36 +02:00
|
|
|
MPlayer mplayer = MPlayer.get(sender);
|
|
|
|
return mplayer.hasFaction();
|
2013-04-25 13:53:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-06-04 14:02:23 +02:00
|
|
|
public String createErrorMessage(CommandSender sender, MassiveCommand command)
|
2013-04-25 13:53:22 +02:00
|
|
|
{
|
|
|
|
return Txt.parse("<b>You must belong to a faction to "+(command == null ? "do that" : command.getDesc())+".");
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|