2011-07-18 22:06:02 +02:00
|
|
|
package com.massivecraft.factions.commands;
|
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
|
|
|
|
2011-10-09 20:10:19 +02:00
|
|
|
public class CmdRelationAlly extends FRelationCommand
|
2011-10-09 18:35:39 +02:00
|
|
|
{
|
2011-10-09 20:10:19 +02:00
|
|
|
public CmdRelationAlly()
|
2011-10-09 18:35:39 +02:00
|
|
|
{
|
2011-03-22 18:48:09 +01:00
|
|
|
aliases.add("ally");
|
2011-10-09 18:35:39 +02:00
|
|
|
targetRelation = Relation.ALLY;
|
2011-03-22 18:48:09 +01:00
|
|
|
}
|
2011-03-22 15:45:41 +01:00
|
|
|
}
|