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
260 B
Java
12 lines
260 B
Java
package com.massivecraft.factions.cmd;
|
|
|
|
import com.massivecraft.factions.struct.Relation;
|
|
|
|
public class CmdRelationEnemy extends FRelationCommand {
|
|
|
|
public CmdRelationEnemy() {
|
|
aliases.add("enemy");
|
|
targetRelation = Relation.ENEMY;
|
|
}
|
|
}
|