Reset color instead of turning color to white for standalone (#759)

Allows non-black-back terminals to see the Geyser log.
This commit is contained in:
Camotoy 2020-06-16 20:05:39 -04:00 committed by GitHub
parent 9369b20209
commit 6388a91587
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ public class GeyserStandaloneLogger extends SimpleTerminalConsole implements org
@Override
public void info(String message) {
log.info(printConsole(ChatColor.WHITE + message, colored));
log.info(printConsole(ChatColor.RESET + ChatColor.BOLD + message, colored));
}
@Override