Skip to content

Commit 69f15c9

Browse files
committed
Always generate
1 parent d1557eb commit 69f15c9

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

SLScheevo.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1354,14 +1354,15 @@ def run(self):
13541354
if app_id in skip_generation:
13551355
continue # explicitly skipped
13561356

1357+
# Always generate
13571358
# Check if schema file already exists in backup or destination
1358-
vdf_accounts = self.steam_login.parse_loginusers_vdf()
1359-
for steamid in vdf_accounts:
1360-
schema_file = f"UserGameStats_{self.steam_login.account_id_from_steamid64(int(steamid))}_{app_id}.bin"
1361-
if (self.OUTPUT_DIR / schema_file).exists() or (self.DEST_DIR and (self.DEST_DIR / schema_file).exists()):
1362-
continue
1359+
#vdf_accounts = self.steam_login.parse_loginusers_vdf()
1360+
#for steamid in vdf_accounts:
1361+
# schema_file = f"UserGameStats_{self.steam_login.account_id_from_steamid64(int(steamid))}_{app_id}.bin"
1362+
# if (self.OUTPUT_DIR / schema_file).exists() or (self.DEST_DIR and (self.DEST_DIR / schema_file).exists()):
1363+
# continue
13631364

1364-
missing_app_ids.append(app_id)
1365+
missing_app_ids.append(app_id)
13651366

13661367
if not missing_app_ids:
13671368
self.logger.log_info("No missing stats files to generate")

0 commit comments

Comments
 (0)