mirror of
https://github.com/reactos/reactos.git
synced 2025-04-26 00:20:34 +00:00
Allow spaces in commands
svn path=/trunk/; revision=35090
This commit is contained in:
parent
3473e20496
commit
555a6a340f
1 changed files with 1 additions and 1 deletions
|
@ -419,7 +419,7 @@ namespace TechBot.IRCLibrary
|
|||
{
|
||||
foreach (char c in command)
|
||||
{
|
||||
if (!Char.IsLetter(c))
|
||||
if (!Char.IsLetter(c) && !Char.IsWhiteSpace(c))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue