mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Various fixes
- Re-add support for MC 1.6 chat color names - Re-add support for MC 1.5- vanilla whispers in ChatBot - Add /connect in main chat prompt (reported by TNT-UP)
This commit is contained in:
parent
84ba8fd0ae
commit
898a04a843
4 changed files with 30 additions and 19 deletions
|
|
@ -189,6 +189,11 @@ namespace MinecraftClient
|
|||
{
|
||||
BotLoad(new ChatBots.Script(text.Substring(8)));
|
||||
}
|
||||
else if (text.ToLower().StartsWith("/connect "))
|
||||
{
|
||||
Settings.ServerIP = text.Substring(9);
|
||||
Program.Restart();
|
||||
}
|
||||
else if (text != "")
|
||||
{
|
||||
//Message is too long
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue