summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
Diffstat (limited to 'data')
-rw-r--r--data/rbot/plugins/autoop.rb6
1 files changed, 3 insertions, 3 deletions
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
}