diff --git a/scripts/fix-map-pools.ts b/scripts/fix-map-pools.ts index e8d2a8c32..19b7c804b 100644 --- a/scripts/fix-map-pools.ts +++ b/scripts/fix-map-pools.ts @@ -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);