Made the init DB not purge itself

main
silverwizard 2 years ago
parent 834d89bbba
commit 1212c7e5fd
  1. 5
      shadowdice.py

@ -30,11 +30,6 @@ class Plugin(PluginBase):
)
def quit(self):
init_db = sqlite3.connect('init.db')
init = init_db.cursor()
init.execute("DROP TABLE inits")
init_db.commit()
init_db.close()
self.is_running = False
log(
INFO,

Loading…
Cancel
Save