From 58b43c90ef7435713213015848eaf0486fab0b8f Mon Sep 17 00:00:00 2001 From: Giuseppe Bilotta Date: Sat, 9 Aug 2008 23:07:37 +0200 Subject: [PATCH] quakeauth plugin: don't identify on connect if we're not on quakenet --- data/rbot/plugins/quakeauth.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/rbot/plugins/quakeauth.rb b/data/rbot/plugins/quakeauth.rb index b4b8b8d6..03c82400 100644 --- a/data/rbot/plugins/quakeauth.rb +++ b/data/rbot/plugins/quakeauth.rb @@ -45,7 +45,7 @@ class QPlugin < Plugin end def connect - identify(nil, nil) + identify(nil, nil) if on_quakenet? end def identify(m, params) -- 2.39.2