diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-02-14 09:41:44 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-02-14 09:41:44 +0000 |
commit | 94a2b7a41b1df0d03992eadb9420b57e3b94200e (patch) | |
tree | 040494b450a6226124cac40856ec490935465f51 /lib/rbot/irc.rb | |
parent | e43dbcf88298d2273c9cca2b3e5c226484686289 (diff) |
New Irc Framework: fix default channel modes prefixes for users
Diffstat (limited to 'lib/rbot/irc.rb')
-rw-r--r-- | lib/rbot/irc.rb | 4 |
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,
|