Giving Credit
This commit is contained in:
@@ -4,6 +4,10 @@ import com.massivecraft.factions.struct.Relation;
|
||||
|
||||
public class CmdRelationAlly extends FRelationCommand {
|
||||
|
||||
/**
|
||||
* @author FactionsUUID Team
|
||||
*/
|
||||
|
||||
public CmdRelationAlly() {
|
||||
aliases.add("ally");
|
||||
targetRelation = Relation.ALLY;
|
||||
|
||||
@@ -4,6 +4,10 @@ import com.massivecraft.factions.struct.Relation;
|
||||
|
||||
public class CmdRelationEnemy extends FRelationCommand {
|
||||
|
||||
/**
|
||||
* @author FactionsUUID Team
|
||||
*/
|
||||
|
||||
public CmdRelationEnemy() {
|
||||
aliases.add("enemy");
|
||||
targetRelation = Relation.ENEMY;
|
||||
|
||||
@@ -4,6 +4,10 @@ import com.massivecraft.factions.struct.Relation;
|
||||
|
||||
public class CmdRelationNeutral extends FRelationCommand {
|
||||
|
||||
/**
|
||||
* @author FactionsUUID Team
|
||||
*/
|
||||
|
||||
public CmdRelationNeutral() {
|
||||
aliases.add("neutral");
|
||||
targetRelation = Relation.NEUTRAL;
|
||||
|
||||
@@ -4,6 +4,10 @@ import com.massivecraft.factions.struct.Relation;
|
||||
|
||||
public class CmdRelationTruce extends FRelationCommand {
|
||||
|
||||
/**
|
||||
* @author FactionsUUID Team
|
||||
*/
|
||||
|
||||
public CmdRelationTruce() {
|
||||
aliases.add("truce");
|
||||
targetRelation = Relation.TRUCE;
|
||||
|
||||
@@ -18,6 +18,10 @@ import org.bukkit.ChatColor;
|
||||
|
||||
public abstract class FRelationCommand extends FCommand {
|
||||
|
||||
/**
|
||||
* @author FactionsUUID Team
|
||||
*/
|
||||
|
||||
public Relation targetRelation;
|
||||
|
||||
public FRelationCommand() {
|
||||
|
||||
Reference in New Issue
Block a user