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