From 576e70482321b027edaffb8eb958d26bc5157a67 Mon Sep 17 00:00:00 2001 From: Giuseppe Bilotta Date: Mon, 30 Apr 2012 14:00:43 +0200 Subject: [PATCH] quakeauth: notify when identified This ensures that joining after identification (config setting irc.join_after_identify) works correctly with quake auth too. --- data/rbot/plugins/quakeauth.rb | 1 + 1 file changed, 1 insertion(+) 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 -- 2.32.0.93.g670b81a890