mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Allow restricting AutoRespond matches to bot owner
Suggestion by AppleCidar in #184
This commit is contained in:
parent
881e080fd6
commit
a4cc36ce05
4 changed files with 61 additions and 24 deletions
|
|
@ -196,7 +196,8 @@ namespace MinecraftClient
|
|||
case "botowners":
|
||||
Bots_Owners.Clear();
|
||||
foreach (string name in argValue.ToLower().Split(','))
|
||||
Bots_Owners.Add(name.Trim());
|
||||
if (!String.IsNullOrWhiteSpace(name))
|
||||
Bots_Owners.Add(name.Trim());
|
||||
break;
|
||||
|
||||
case "internalcmdchar":
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue