Implemented the Discord Bridge Chat Bot. TODO: Translate

This commit is contained in:
Milutinke 2022-10-21 02:29:47 +02:00
parent e006943535
commit ec27ec53d7
4 changed files with 228 additions and 1 deletions

View file

@ -567,7 +567,7 @@ namespace MinecraftClient
public enum ForgeConfigType { no, auto, force };
public enum TerminalColorDepthType { bit_4, bit_8, bit_24};
public enum TerminalColorDepthType { bit_4, bit_8, bit_24 };
}
public struct AccountInfoConfig
@ -1090,6 +1090,13 @@ namespace MinecraftClient
set { ChatBots.ChatLog.Config = value; ChatBots.ChatLog.Config.OnSettingUpdate(); }
}
//[TomlPrecedingComment("$config.ChatBot.DiscordBridge")]
public ChatBots.DiscordBridge.Configs DiscordBridge
{
get { return ChatBots.DiscordBridge.Config; }
set { ChatBots.DiscordBridge.Config = value; }
}
[TomlPrecedingComment("$config.ChatBot.Farmer$")]
public ChatBots.Farmer.Configs Farmer
{