|
# File rbot/ircbot.rb, line 318
def say(where, message)
message.to_s.each_line { |line|
line.chomp!
next unless(line.length > 0)
unless((where =~ /^#/) && (@channels.has_key?(where) && @channels[where].quiet))
sendmsg("PRIVMSG", where, line)
end
}
end
|