Commit 1f4e41bf29201b9f28f8271bf724a7e6f39cbe49

Handled properly ctcp messages
  
3636
3737 if @stats[0].match(/^PING/)
3838 @type = 'ping'
39 elsif @message.match(/^(\x1(\w+))/)
39 elsif @message.match(/^(\x1(\w+))/) # ctcp
4040 @from = @stats[0]
41 @type = $2.downcase
41 ctcp = $2.downcase
42 @type = "ctcp_#{ctcp}"
4243
4344 @message.gsub!($1, "")
4445 elsif @stats[1] && @stats[1].match(/^\d+/)