summaryrefslogtreecommitdiff
path: root/lib/rbot
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2007-02-14 09:41:44 +0000
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2007-02-14 09:41:44 +0000
commit94a2b7a41b1df0d03992eadb9420b57e3b94200e (patch)
tree040494b450a6226124cac40856ec490935465f51 /lib/rbot
parente43dbcf88298d2273c9cca2b3e5c226484686289 (diff)
New Irc Framework: fix default channel modes prefixes for users
Diffstat (limited to 'lib/rbot')
-rw-r--r--lib/rbot/irc.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rbot/irc.rb b/lib/rbot/irc.rb
index a4bd725a..1b472016 100644
--- a/lib/rbot/irc.rb
+++ b/lib/rbot/irc.rb
@@ -1342,8 +1342,8 @@ module Irc
:network => nil,
:nicklen => 9,
:prefix => {
- :modes => 'ov'.scan(/./),
- :prefixes => '@+'.scan(/./)
+ :modes => [:o, :v],
+ :prefixes => [:"@", :+],
},
:safelist => nil,
:statusmsg => nil,