diff --git a/plugin.py b/plugin.py index 024c73e..fc7f969 100644 --- a/plugin.py +++ b/plugin.py @@ -2387,6 +2387,14 @@ class TriviaTime(callbacks.Plugin): except: pass c.close() + + def dropLevelTable(self): + c = self.conn.cursor() + try: + c.execute('''DROP TABLE trivialevel''') + except: + pass + c.close() def getRandomQuestionNotAsked(self, channel, roundStart): c = self.conn.cursor()