mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2026-08-15 13:04:36 +00:00
Implemented a first version of an MCP server as a Chat Bot
This commit is contained in:
parent
5270aed315
commit
79b091cab6
15 changed files with 2350 additions and 2 deletions
|
|
@ -1755,6 +1755,17 @@ namespace MinecraftClient
|
|||
get { return ChatBots.DiscordRpc.Config; }
|
||||
set { ChatBots.DiscordRpc.Config = value; ChatBots.DiscordRpc.Config.OnSettingUpdate(); }
|
||||
}
|
||||
|
||||
[TomlPrecedingComment("$ChatBot.McpServer$")]
|
||||
public ChatBots.McpServer.Configs McpServer
|
||||
{
|
||||
get { return ChatBots.McpServer.Config; }
|
||||
set
|
||||
{
|
||||
ChatBots.McpServer.Config = value ?? new ChatBots.McpServer.Configs();
|
||||
ChatBots.McpServer.Config.OnSettingUpdate();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue