From c42e15b8c29d6dd14584c95d9bdd14b1f3165054 Mon Sep 17 00:00:00 2001 From: drklien Date: Thu, 17 Jul 2025 12:51:41 +1000 Subject: [PATCH] fixes to db writing --- steam-games.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steam-games.js b/steam-games.js index 101d53c..7246f91 100644 --- a/steam-games.js +++ b/steam-games.js @@ -72,7 +72,7 @@ async function claim() { } // Write db.data[user] to a file - writeFileSync(`data/${user}.json`, JSON.stringify(db.data[user], null, 2)); + writeFileSync(`data/steam.json`, JSON.stringify(db.data[user], null, 2)); console.log('Data written to file for user:', user); }