mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2026-08-15 13:04:36 +00:00
Several fixes
Fix Alerts bot not displaying several occurences in a row Fix Script bot not displaying in console what it is performing Fix IOException not caught when connection is lost
This commit is contained in:
parent
d295f3b181
commit
cfb313fa01
5 changed files with 13 additions and 2 deletions
|
|
@ -72,7 +72,15 @@ namespace MinecraftClient
|
|||
|
||||
public static string[] getArgs(string command)
|
||||
{
|
||||
return getArg(command).Split(' ');
|
||||
string[] args = getArg(command).Split(' ');
|
||||
if (args.Length == 1 && args[0] == "")
|
||||
{
|
||||
return new string[] { };
|
||||
}
|
||||
else
|
||||
{
|
||||
return args;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue