class Irc::PrivMessage

class to manage IRC PRIVMSGs

Public Class Methods

new(bot, server, source, target, message, opts={}) click to toggle source
Calls superclass method Irc::UserMessage::new
# File lib/rbot/message.rb, line 513
def initialize(bot, server, source, target, message, opts={})
  @msg_wants_id = opts[:handle_id]
  super(bot, server, source, target, message)
end