Skip to content

Commit

Permalink
Replace colors for header and footer
Browse files Browse the repository at this point in the history
  • Loading branch information
Nan1t committed Jan 31, 2022
1 parent aba8a6e commit 4c2ad07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/ru/nanit/limbo/configuration/LimboConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ public void load() throws Exception {
playerListUsername = conf.node("playerList", "username").getString();

if (useHeaderAndFooter) {
playerListHeader = conf.node("headerAndFooter", "header").getString();
playerListFooter = conf.node("headerAndFooter", "footer").getString();
playerListHeader = Colors.of(conf.node("headerAndFooter", "header").getString());
playerListFooter = Colors.of(conf.node("headerAndFooter", "footer").getString());
}

infoForwarding = conf.node("infoForwarding").get(InfoForwarding.class);
Expand Down

0 comments on commit 4c2ad07

Please sign in to comment.