mirror of
https://github.com/reactos/reactos.git
synced 2026-06-01 08:50:24 +08:00
Allow spaces in commands
svn path=/trunk/; revision=35090
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user