diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | data/rbot/plugins/autoop.rb | 6 |
2 files changed, 7 insertions, 3 deletions
@@ -1,3 +1,7 @@ +2006-08-11 Giuseppe Bilotta <giuseppe.bilotta@gmail.com> + + * AutoOp plugin: adapted to the new IRC framework. + 2006-08-10 Giuseppe Bilotta <giuseppe.bilotta@gmail.com> * Fix a bug in new IRC Framework: the list of channels a quitting user was diff --git a/data/rbot/plugins/autoop.rb b/data/rbot/plugins/autoop.rb index cc1e11a9..5f416e41 100644 --- a/data/rbot/plugins/autoop.rb +++ b/data/rbot/plugins/autoop.rb @@ -6,9 +6,9 @@ class AutoOP < Plugin def join(m) return if m.address? @registry.each { |mask,channels| - if(Irc.netmaskmatch(mask, m.source) && - (channels.empty? || channels.include?(m.channel))) - @bot.mode(m.channel, "+o", m.sourcenick) + if m.source.matches?(mask.to_irc_netmask(:server => m.server)) && + (channels.empty? || channels.include?(m.channel.to_s)) + @bot.mode(m.channel, "+o", m.source.nick) return end } |