45 lines
1.2 KiB
Java
45 lines
1.2 KiB
Java
package com.massivecraft.factions;
|
|
|
|
import java.io.Serializable;
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
import com.massivecraft.factions.entity.MPlayer;
|
|
import com.massivecraft.factions.entity.Faction;
|
|
import com.massivecraft.massivecore.predicate.Predicate;
|
|
import com.massivecraft.massivecore.util.MUtil;
|
|
|
|
public class FactionEqualsPredicate implements Predicate<CommandSender>, Serializable
|
|
{
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
// -------------------------------------------- //
|
|
// FIELDS
|
|
// -------------------------------------------- //
|
|
|
|
private final String factionId;
|
|
public String getFactionId() { return this.factionId; }
|
|
|
|
// -------------------------------------------- //
|
|
// CONSTRUCT
|
|
// -------------------------------------------- //
|
|
|
|
public FactionEqualsPredicate(Faction faction)
|
|
{
|
|
this.factionId = faction.getId();
|
|
}
|
|
|
|
// -------------------------------------------- //
|
|
// OVERRIDE
|
|
// -------------------------------------------- //
|
|
|
|
@Override
|
|
public boolean apply(CommandSender sender)
|
|
{
|
|
if (MUtil.isntSender(sender)) return false;
|
|
|
|
MPlayer mplayer = MPlayer.get(sender);
|
|
return this.factionId.equals(mplayer.getFactionId());
|
|
}
|
|
|
|
} |