Added a feature to enable or disable broadcasting tag changes
This commit is contained in:
parent
1cf2158021
commit
8b6cf4fe8c
@ -74,6 +74,7 @@ public class Conf {
|
|||||||
public static String truceChatFormat = ChatColor.DARK_PURPLE + "%s:" + ChatColor.WHITE + " %s";
|
public static String truceChatFormat = ChatColor.DARK_PURPLE + "%s:" + ChatColor.WHITE + " %s";
|
||||||
|
|
||||||
public static boolean broadcastDescriptionChanges = false;
|
public static boolean broadcastDescriptionChanges = false;
|
||||||
|
public static boolean broadcastTagChanges = false;
|
||||||
|
|
||||||
public static double saveToFileEveryXMinutes = 30.0;
|
public static double saveToFileEveryXMinutes = 30.0;
|
||||||
|
|
||||||
|
@ -69,9 +69,13 @@ public class CmdTag extends FCommand {
|
|||||||
fplayer.msg(TL.COMMAND_TAG_FACTION, fme.describeTo(myFaction, true), myFaction.getTag(myFaction));
|
fplayer.msg(TL.COMMAND_TAG_FACTION, fme.describeTo(myFaction, true), myFaction.getTag(myFaction));
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Broadcast the tag change (if applicable)
|
||||||
|
if (Conf.broadcastTagChanges) {
|
||||||
Faction faction = fplayer.getFaction();
|
Faction faction = fplayer.getFaction();
|
||||||
fplayer.msg(TL.COMMAND_TAG_CHANGED, fme.getColorTo(faction) + oldtag, myFaction.getTag(faction));
|
fplayer.msg(TL.COMMAND_TAG_CHANGED, fme.getColorTo(faction) + oldtag, myFaction.getTag(faction));
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
FTeamWrapper.updatePrefixes(myFaction);
|
FTeamWrapper.updatePrefixes(myFaction);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user