13 lines
255 B
Java
13 lines
255 B
Java
package com.massivecraft.factions.commands;
|
|
|
|
import com.massivecraft.factions.struct.Relation;
|
|
|
|
public class CmdRelationNeutral extends FRelationCommand
|
|
{
|
|
public CmdRelationNeutral()
|
|
{
|
|
aliases.add("neutral");
|
|
targetRelation = Relation.NEUTRAL;
|
|
}
|
|
}
|