2011-10-09 21:57:43 +02:00
|
|
|
package com.massivecraft.factions.cmd;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2011-07-18 22:06:02 +02:00
|
|
|
import com.massivecraft.factions.struct.Relation;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
public class CmdRelationAlly extends FRelationCommand {
|
|
|
|
public CmdRelationAlly() {
|
|
|
|
aliases.add("ally");
|
|
|
|
targetRelation = Relation.ALLY;
|
|
|
|
}
|
2011-03-22 15:45:41 +01:00
|
|
|
}
|