mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 04:03:05 +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)
|
foreach (char c in command)
|
||||||
{
|
{
|
||||||
if (!Char.IsLetter(c))
|
if (!Char.IsLetter(c) && !Char.IsWhiteSpace(c))
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue