[IPvGO] Remove testing flag (#1016)

This commit is contained in:
Michael Ficocelli 2024-02-10 08:04:21 -05:00 committed by GitHub
parent 84c4dba1e2
commit ca374076b8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -107,10 +107,7 @@ export function playerHasDiscoveredGo() {
const hasRecords = opponentList.find((opponent) => getPlayerStats(opponent).wins + getPlayerStats(opponent).losses);
const isInBn14 = Player.bitNodeN === 14;
// TODO: remove this once testing is completed
const isInTesting = true;
return !!(playedGame || hasRecords || isInBn14 || isInTesting);
return !!(playedGame || hasRecords || isInBn14);
}
function getEffectPowerForFaction(opponent: opponents) {