add toggle for sending chat messages to console

Fixes #4415
This commit is contained in:
nossr50
2021-02-10 10:05:42 -08:00
parent addf9b0431
commit 1bde79cd6f
5 changed files with 14 additions and 2 deletions

View File

@@ -49,6 +49,12 @@ public class ChatConfig extends AutoUpdateConfigLoader {
return config.getBoolean(key, true);
}
public boolean isConsoleIncludedInAudience(@NotNull ChatChannel chatChannel) {
String key = "Chat.Channels." + StringUtils.getCapitalized(chatChannel.toString()) + ".Send_To_Console";
return config.getBoolean(key, true);
}
public boolean isSpyingAutomatic() {
return config.getBoolean("Chat.Channels.Party.Spies.Automatically_Enable_Spying", false);
}