diff options
-rw-r--r-- | code/plusbot.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/plusbot.py b/code/plusbot.py index 4cf06f2..48ded4e 100644 --- a/code/plusbot.py +++ b/code/plusbot.py @@ -380,7 +380,7 @@ async def serveronline(): await channel.edit(name=f"{emoji.emojize(':cross_mark:')} Server Offline") if sonline == 1: sonline = 0 - botsql = self.bot.get_cog('BotSQL') + botsql = bot.get_cog('BotSQL') mycursor = await botsql.get_cursor() sql2 = """INSERT INTO serverstats (date, timestamp, users) VALUES ('%s', '%s', '%s')""" % (await timenow(), int(time.time()), sonline) mycursor.execute(sql2) |