2011-03-22 15:45:41 +01:00
|
|
|
package com.bukkit.mcteam.factions.commands;
|
|
|
|
|
|
|
|
import com.bukkit.mcteam.factions.struct.Relation;
|
|
|
|
|
|
|
|
public class FCommandRelationAlly extends FRelationCommand {
|
|
|
|
|
2011-03-22 18:48:09 +01:00
|
|
|
public FCommandRelationAlly() {
|
|
|
|
aliases.add("ally");
|
|
|
|
}
|
|
|
|
|
2011-03-22 15:45:41 +01:00
|
|
|
public void perform() {
|
|
|
|
relation(Relation.ALLY, parameters.get(0));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|