summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2012-04-30 14:00:43 +0200
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2012-04-30 14:00:43 +0200
commit576e70482321b027edaffb8eb958d26bc5157a67 (patch)
treefaeff4d15c5605b7351e3084e68cc90c5ecc6fd0 /data
parente14bb61eeed956dda60f2e2ad3a3b9cc8667306a (diff)
quakeauth: notify when identified
This ensures that joining after identification (config setting irc.join_after_identify) works correctly with quake auth too.
Diffstat (limited to 'data')
-rw-r--r--data/rbot/plugins/quakeauth.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/data/rbot/plugins/quakeauth.rb b/data/rbot/plugins/quakeauth.rb
index c1a8f9c4..531f1430 100644
--- a/data/rbot/plugins/quakeauth.rb
+++ b/data/rbot/plugins/quakeauth.rb
@@ -79,6 +79,7 @@ class QPlugin < Plugin
@bot.say @source, "username or password incorrect" if @source
when /you are now logged in/i
@bot.say @source, "authed successfully" if @source
+ @bot.plugins.delegate('identified')
when /auth is not available/
@bot.say @source, "already authed" if @source
end