Skip to content

Commit

Permalink
Fix colors for the ingame chat prefix.
Browse files Browse the repository at this point in the history
  • Loading branch information
asofold committed Nov 15, 2015
1 parent d62951a commit 1181169
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -18,6 +18,7 @@
import fr.neatmonster.nocheatplus.logging.details.FileLoggerAdapter;
import fr.neatmonster.nocheatplus.logging.details.LogOptions;
import fr.neatmonster.nocheatplus.logging.details.LogOptions.CallContext;
import fr.neatmonster.nocheatplus.utilities.ColorUtil;


/**
Expand Down Expand Up @@ -96,7 +97,7 @@ protected void createDefaultLoggers(ConfigFile config) {
}

// Default prefixes.
final String prefixIngame = config.getString(ConfPaths.LOGGING_BACKEND_INGAMECHAT_PREFIX);
final String prefixIngame = ColorUtil.replaceColors(config.getString(ConfPaths.LOGGING_BACKEND_INGAMECHAT_PREFIX));
final String prefixFile = config.getString(ConfPaths.LOGGING_BACKEND_FILE_PREFIX);

// Variables for temporary use.
Expand Down

0 comments on commit 1181169

Please sign in to comment.