mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Implemented the Discord Bridge Chat Bot. TODO: Translate
This commit is contained in:
parent
e006943535
commit
ec27ec53d7
4 changed files with 228 additions and 1 deletions
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue