16 lines
304 B
Java
16 lines
304 B
Java
package com.bukkit.mcteam.factions.commands;
|
|
|
|
import com.bukkit.mcteam.factions.struct.Relation;
|
|
|
|
public class FCommandRelationEnemy extends FRelationCommand {
|
|
|
|
public FCommandRelationEnemy() {
|
|
aliases.add("enemy");
|
|
}
|
|
|
|
public void perform() {
|
|
relation(Relation.ENEMY, parameters.get(0));
|
|
}
|
|
|
|
}
|