47 lines
1.4 KiB
Java
47 lines
1.4 KiB
Java
package com.massivecraft.factions.cmd.req;
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
import com.massivecraft.factions.FPlayer;
|
|
import com.massivecraft.factions.Rel;
|
|
import com.massivecraft.mcore.cmd.MCommand;
|
|
import com.massivecraft.mcore.cmd.req.ReqAbstract;
|
|
import com.massivecraft.mcore.util.Txt;
|
|
|
|
public class ReqRoleIsAtLeast extends ReqAbstract
|
|
{
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
// -------------------------------------------- //
|
|
// FIELDS
|
|
// -------------------------------------------- //
|
|
|
|
private final Rel rel;
|
|
public Rel getRel() { return this.rel; }
|
|
|
|
// -------------------------------------------- //
|
|
// INSTANCE & CONSTRUCT
|
|
// -------------------------------------------- //
|
|
|
|
public static ReqRoleIsAtLeast get(Rel rel) { return new ReqRoleIsAtLeast(rel); }
|
|
private ReqRoleIsAtLeast(Rel rel) { this.rel = rel; }
|
|
|
|
// -------------------------------------------- //
|
|
// OVERRIDE
|
|
// -------------------------------------------- //
|
|
|
|
@Override
|
|
public boolean apply(CommandSender sender, MCommand command)
|
|
{
|
|
FPlayer fplayer = FPlayer.get(sender);
|
|
return fplayer.getRole().isAtLeast(this.rel);
|
|
}
|
|
|
|
@Override
|
|
public String createErrorMessage(CommandSender sender, MCommand command)
|
|
{
|
|
return Txt.parse("<b>You must be <h>%s <b>or higher to do this.", Txt.getNicedEnum(this.rel));
|
|
}
|
|
|
|
}
|