FEAT: Added XP System, need to test and adjust it
REF: Adjusted the Twitch Module to be on a 5 minute cooldown DOC: Adjusted related code for the new XP system in db and config
This commit is contained in:
@ -41,6 +41,13 @@ def initialize_db():
|
||||
last_video_id TEXT
|
||||
)
|
||||
''')
|
||||
cursor.execute('''
|
||||
CREATE TABLE IF NOT EXISTS user_xp (
|
||||
user_id INTEGER PRIMARY KEY,
|
||||
xp INTEGER,
|
||||
level INTEGER
|
||||
)
|
||||
''')
|
||||
|
||||
conn.commit()
|
||||
conn.close()
|
||||
|
Reference in New Issue
Block a user