mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 12:23:25 +00: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