diff options
author | Tom Gilbert <tom@linuxbrit.co.uk> | 2005-08-21 12:31:41 +0000 |
---|---|---|
committer | Tom Gilbert <tom@linuxbrit.co.uk> | 2005-08-21 12:31:41 +0000 |
commit | 32f53f6a17396a8828c30c58ce8545c93c04ff2c (patch) | |
tree | b9a54968b9b4b1ad69f67d8cedbab3914c412ac3 /data | |
parent | b7572e688c0d44b3632b6077a3e7a936af733568 (diff) |
Sun Aug 21 13:29:55 BST 2005 Tom Gilbert <tom@linuxbrit.co.uk>
* fix for bug in quakenet plugin (trac #14)
* multiple fixes for unescaped bot nick in regexp's (trac #13)
Diffstat (limited to 'data')
-rw-r--r-- | data/rbot/plugins/quakeauth.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/quakeauth.rb b/data/rbot/plugins/quakeauth.rb index 8f412f1d..dd1c884d 100644 --- a/data/rbot/plugins/quakeauth.rb +++ b/data/rbot/plugins/quakeauth.rb @@ -27,7 +27,7 @@ class QPlugin < Plugin end def set(m, params) - @registry['quakenet.user'] = params[:user] + @registry['quakenet.user'] = params[:nick] @registry['quakenet.auth'] = params[:passwd] m.okay end |