diff --git a/Craft/database/sqlite/data.py b/Craft/database/sqlite/data.py index cc157b8..fb979a4 100644 --- a/Craft/database/sqlite/data.py +++ b/Craft/database/sqlite/data.py @@ -13,7 +13,7 @@ class SqliteDatabase: @staticmethod async def sets(key1: str, key2: str, value_emoji: str, value_word: str) -> None: async with Sqlite() as sqlite: - await sqlite.execute("INSERT INTO Craft (key1, key2, value_emoji, value_word, used_count) VALUES (?, ?, ?, ?, ?)", (key1, key2, value_emoji, value_word, 1)) + await sqlite.execute("INSERT INTO Craft (key1, key2, value_emoji, value_word, used_count) VALUES (?, ?, ?, ?, ?)", (key1, key2, value_emoji, value_word, 0)) @staticmethod async def update(key1: str, key2: str) -> None: