From 3878116624b5a5682057c63a596a2697472de674 Mon Sep 17 00:00:00 2001 From: Michael Li Date: Fri, 10 Jan 2025 16:27:24 -0500 Subject: [PATCH] Add override sanitization --- test/utils/gameManager.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/utils/gameManager.ts b/test/utils/gameManager.ts index bbe3fc4c859..f986149c9f1 100644 --- a/test/utils/gameManager.ts +++ b/test/utils/gameManager.ts @@ -120,8 +120,8 @@ export default class GameManager { this.reload = new ReloadHelper(this); this.modifiers = new ModifierHelper(this); - // Disables Mystery Encounters on all tests (can be overridden at test level) - this.override.mysteryEncounterChance(0); + // Sanitize overrides for each test + this.override.mysteryEncounterChance(0).moveset([]).enemyMoveset([]).startingHeldItems([]).enemyHeldItems([]); } /**