package com.massivecraft.factions.cmd.req; import com.massivecraft.factions.entity.MPlayer; import com.massivecraft.massivecore.command.MassiveCommand; import com.massivecraft.massivecore.command.requirement.RequirementAbstract; import com.massivecraft.massivecore.util.MUtil; import com.massivecraft.massivecore.util.Txt; import org.bukkit.command.CommandSender; public class ReqHasFaction extends RequirementAbstract { // -------------------------------------------- // // SERIALIZABLE // -------------------------------------------- // 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, MassiveCommand command) { if (MUtil.isntSender(sender)) return false; MPlayer mplayer = MPlayer.get(sender); return mplayer.hasFaction(); } @Override public String createErrorMessage(CommandSender sender, MassiveCommand command) { return Txt.parse("You must belong to a faction to %s.", getDesc(command)); } }