]> jfr.im git - irc/rizon/acid.git/commitdiff
Fix limitserv startup with new exception stuff
authorAdam <redacted>
Sat, 7 Mar 2015 20:16:45 +0000 (15:16 -0500)
committerAdam <redacted>
Sat, 7 Mar 2015 20:16:45 +0000 (15:16 -0500)
pyva/pyva/src/main/python/limitserv/limitserv.py

index d61fc3f4f3d9629e3559b9fa3d64e54ec1db4c3c..4b9e7da1940d51568519c18a1a064ef838377c2f 100644 (file)
@@ -130,7 +130,8 @@ class limitserv(
        def join(self, channel):
                me = User.findUser(self.nick)
                me.joinChan(channel)
-               self.msg('ChanServ', 'OP %s' % channel)                   # and the channel is not empty. For now, use /cs op
+               if Acidictive.me and not Acidictive.me.isBursting():
+                       self.msg('ChanServ', 'OP %s' % channel)                   # and the channel is not empty. For now, use /cs op
 
        def part(self, channel):
                me = User.findUser(self.nick)