13 lines
238 B
Java
13 lines
238 B
Java
package com.massivecraft.factions.cmd;
|
|
|
|
import com.massivecraft.factions.struct.Relation;
|
|
|
|
public class CmdRelationAlly extends FRelationCommand
|
|
{
|
|
public CmdRelationAlly()
|
|
{
|
|
aliases.add("ally");
|
|
targetRelation = Relation.ALLY;
|
|
}
|
|
}
|