| Class | Irc::TopicMessage |
| In: |
lib/rbot/message.rb
|
| Parent: | BasicUserMessage |
| channel | [R] | topic set on channel |
| info_or_set | [RW] | :info if topic info, :set if topic set |
| timestamp | [R] | topic set at (unixtime) |
| topic | [R] | channel topic |
# File lib/rbot/message.rb, line 663
663: def initialize(bot, server, source, channel, topic=ChannelTopic.new)
664: super(bot, server, source, channel, topic.text)
665: @topic = topic
666: @timestamp = topic.set_on
667: @channel = channel
668: @info_or_set = nil
669: end