Merge pull request #4505 from deathbeam/fix-color-load

Fix loading of chat colors on startup
This commit is contained in:
Adam
2018-07-26 17:36:39 -04:00
committed by GitHub
2 changed files with 7 additions and 1 deletions

View File

@@ -243,6 +243,9 @@ public class RuneLite
// Initialize UI
clientUI.open(this);
// Initialize chat colors
chatMessageManager.loadColors();
// Initialize Discord service
discordService.init();

View File

@@ -216,7 +216,10 @@ public class ChatMessageManager
return null;
}
private void loadColors()
/**
* Load all configured colors
*/
public void loadColors()
{
colorCache.clear();