diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | data/rbot/plugins/autoop.rb | 18 |
2 files changed, 19 insertions, 0 deletions
@@ -1,6 +1,7 @@ 2006-08-11 Giuseppe Bilotta <giuseppe.bilotta@gmail.com> * AutoOp plugin: adapted to the new IRC framework. + * AutoOp plugin: trigger autoop on nick change too. 2006-08-10 Giuseppe Bilotta <giuseppe.bilotta@gmail.com> diff --git a/data/rbot/plugins/autoop.rb b/data/rbot/plugins/autoop.rb index 5f416e41..a47375ca 100644 --- a/data/rbot/plugins/autoop.rb +++ b/data/rbot/plugins/autoop.rb @@ -14,6 +14,24 @@ class AutoOP < Plugin } end + def nick(m) + return if m.address? + is_on = m.server.channels.inject(ChannelList.new) { |list, ch| + list << ch if ch.users.include?(m.source) + list + } + is_on.each { |channel| + ch = channel.to_s + @registry.each { |mask,channels| + if m.source.matches?(mask.to_irc_netmask(:server => m.server)) && + (channels.empty? || channels.include?(ch)) + @bot.mode(ch, "+o", m.source.nick) + return + end + } + } + end + def add(m, params) @registry[params[:mask]] = params[:channels].dup m.okay |