class to pass IRC Nick changes in. @message contains the old nickame, @sourcenick contains the new one.
# File lib/rbot/message.rb, line 564 def initialize(bot, server, source, oldnick, newnick) super(bot, server, source, oldnick, newnick) @address = (source == @bot.myself) @is_on = [] end
# File lib/rbot/message.rb, line 578 def inspect fields = ' old=' << oldnick fields << ' new=' << newnick super(fields) end
# File lib/rbot/message.rb, line 574 def newnick return @message end
# File lib/rbot/message.rb, line 570 def oldnick return @target end