Added Neutral List PlaceHolder

This commit is contained in:
Driftay 2020-04-06 16:55:22 -04:00
parent b15ff69682
commit 8fb697888f
2 changed files with 2 additions and 0 deletions

View File

@ -18,6 +18,7 @@ public enum FancyTag implements Tag {
* @author FactionsUUID Team
*/
NEUTRAL_LIST("{neutral-list}", (target, fme, prefix, gm) -> processRelation(prefix, target, fme, Relation.NEUTRAL)),
ALLIES_LIST("{allies-list}", (target, fme, prefix, gm) -> processRelation(prefix, target, fme, Relation.ALLY)),
ENEMIES_LIST("{enemies-list}", (target, fme, prefix, gm) -> processRelation(prefix, target, fme, Relation.ENEMY)),
TRUCES_LIST("{truces-list}", (target, fme, prefix, gm) -> processRelation(prefix, target, fme, Relation.TRUCE)),

View File

@ -20,6 +20,7 @@ public enum TagReplacer {
/**
* Fancy variables, used by f show
*/
NEUTRAL_LIST(TagType.FANCY, "{neutral-list}"),
ALLIES_LIST(TagType.FANCY, "{allies-list}"),
ONLINE_LIST(TagType.FANCY, "{online-list}"),
ENEMIES_LIST(TagType.FANCY, "{enemies-list}"),