ddf054330a
Boards can be toggled with /f sb. Toggles are persistent in a yml file. Also fix some small spelling and format things that were really bugging me.
12 lines
256 B
Java
12 lines
256 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;
|
|
}
|
|
}
|