Factions/src/com/bukkit/mcteam/factions/commands/FCommandRelationNeutral.java

16 lines
312 B
Java
Raw Normal View History

package com.bukkit.mcteam.factions.commands;
import com.bukkit.mcteam.factions.struct.Relation;
public class FCommandRelationNeutral extends FRelationCommand {
public FCommandRelationNeutral() {
aliases.add("neutral");
}
public void perform() {
relation(Relation.NEUTRAL, parameters.get(0));
}
}