From ca374076b873d96cb9b0e288869eead50f1e4b0c Mon Sep 17 00:00:00 2001 From: Michael Ficocelli Date: Sat, 10 Feb 2024 08:04:21 -0500 Subject: [PATCH] [IPvGO] Remove testing flag (#1016) --- src/Go/effects/effect.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/Go/effects/effect.ts b/src/Go/effects/effect.ts index 63ba58385..fa1cff4fc 100644 --- a/src/Go/effects/effect.ts +++ b/src/Go/effects/effect.ts @@ -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) {