Adjust fix map pool script

This commit is contained in:
Kalle
2023-05-16 22:23:20 +03:00
parent d5b74e928a
commit ce60895e8f

View File

@@ -4,7 +4,7 @@ import { sql } from "~/db/sql";
const faultyTournamentTeamIds = sql
.prepare(
"select tournamentTeamId from mappoolmap where tournamentteamid is not null and mode != 'SZ' group by tournamentteamid"
"select tournamentTeamId from mappoolmap where tournamentteamid is not null and mode = 'SZ' group by tournamentteamid"
)
.all()
.map((row) => row.tournamentTeamId);