Commit 32c9d3f6b320fed4e00a95a4aac89a32a3f4e85d

Escape the operator and allow to add spaces after the operator

Signed-off-by: David A. Cuadrado <krawek@gmail.com>
  
1212 end
1313
1414 def on_privmsg(event)
15 if event.message =~ /^#{@operator}(\w+)(\s|.+)*/
15 if event.message =~ /^#{Regexp.escape(@operator)}\s*(\w+)(\s|.+)*/
1616 command = $1
1717 args = $2.to_s.split(/\s+/)
1818 method = "do_#{command}".to_sym