Fix PAPI tag format
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Bea 2022-10-24 22:56:48 +02:00
parent 81160ce074
commit f223b0a7c7
1 changed files with 4 additions and 2 deletions

View File

@ -52,8 +52,10 @@ public class PAPIManager extends PlaceholderExpansion
int pronounId;
// base format is [She/Her]
final String baseFormat = ChatColor.DARK_GRAY + "%main%" + ChatColor.DARK_GRAY + "/" +
"%secondary%" + ChatColor.DARK_GRAY + "]" + ChatColor.RESET;
// todo: allow customizing from config.yml
final String baseFormat = ChatColor.DARK_GRAY + "[" + ChatColor.RESET + "%main%" +
ChatColor.DARK_GRAY + "/" + ChatColor.RESET + "%secondary%" +
ChatColor.DARK_GRAY + "]" + ChatColor.RESET;
// todo: this sends query every time we get a papi call, which is horrible for performance.