55 lines
1.3 KiB
Java
55 lines
1.3 KiB
Java
|
package com.bukkit.mcteam.factions.commands;
|
||
|
|
||
|
import java.util.ArrayList;
|
||
|
|
||
|
import com.bukkit.mcteam.factions.Conf;
|
||
|
import com.bukkit.mcteam.factions.FPlayer;
|
||
|
import com.bukkit.mcteam.factions.Faction;
|
||
|
import com.bukkit.mcteam.factions.struct.Role;
|
||
|
|
||
|
public class FCommandDeinvite extends FBaseCommand {
|
||
|
|
||
|
public FCommandDeinvite() {
|
||
|
requiredParameters = new ArrayList<String>();
|
||
|
optionalParameters = new ArrayList<String>();
|
||
|
requiredParameters.add("player name");
|
||
|
|
||
|
permissions = "";
|
||
|
|
||
|
senderMustBePlayer = true;
|
||
|
|
||
|
helpDescription = "Remove a pending invitation";
|
||
|
}
|
||
|
|
||
|
public void perform() {
|
||
|
if ( ! assertHasFaction()) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
String playerName = parameters.get(0);
|
||
|
|
||
|
FPlayer you = findFPlayer(playerName, false);
|
||
|
if (you == null) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
Faction myFaction = me.getFaction();
|
||
|
|
||
|
if ( ! assertMinRole(Role.MODERATOR)) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if (you.getFaction() == myFaction) {
|
||
|
sendMessage(you.getName()+" is already a member of "+myFaction.getTag());
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
myFaction.invites.remove(you.playerName);
|
||
|
Faction.save();
|
||
|
|
||
|
you.sendMessage(me.getNameAndRelevant(you)+Conf.colorSystem+" revoked your invitation to "+myFaction.getTag(you));
|
||
|
myFaction.sendMessage(me.getNameAndRelevant(me)+Conf.colorSystem+" revoked "+you.getNameAndRelevant(me)+"'s"+Conf.colorSystem+" invitation.");
|
||
|
}
|
||
|
|
||
|
}
|