2011-10-09 21:57:43 +02:00
|
|
|
package com.massivecraft.factions.cmd;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2013-04-09 13:24:55 +02:00
|
|
|
import com.massivecraft.factions.Rel;
|
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-23 17:30:41 +02:00
|
|
|
targetRelation = Rel.ALLY;
|
2011-03-22 18:48:09 +01:00
|
|
|
}
|
2011-03-22 15:45:41 +01:00
|
|
|
}
|