diff --git a/src/data/mystery-encounters/encounters/teleporting-hijinks-encounter.ts b/src/data/mystery-encounters/encounters/teleporting-hijinks-encounter.ts index 346a736fbe9..63e7674b05a 100644 --- a/src/data/mystery-encounters/encounters/teleporting-hijinks-encounter.ts +++ b/src/data/mystery-encounters/encounters/teleporting-hijinks-encounter.ts @@ -25,7 +25,7 @@ const namespace = "mysteryEncounter:teleportingHijinks"; const MONEY_COST_MULTIPLIER = 2.5; const BIOME_CANDIDATES = [Biome.SPACE, Biome.FAIRY_CAVE, Biome.LABORATORY, Biome.ISLAND]; -const MACHINE_INTERFACING_TYPES = [Type.ELECTRIC, Type.FLYING]; +const MACHINE_INTERFACING_TYPES = [Type.ELECTRIC, Type.STEEL]; /** * Teleporting Hijinks encounter. diff --git a/src/test/mystery-encounter/encounters/teleporting-hijinks-encounter.test.ts b/src/test/mystery-encounter/encounters/teleporting-hijinks-encounter.test.ts index cd88846de7b..f4a3b41bf1d 100644 --- a/src/test/mystery-encounter/encounters/teleporting-hijinks-encounter.test.ts +++ b/src/test/mystery-encounter/encounters/teleporting-hijinks-encounter.test.ts @@ -196,7 +196,7 @@ describe("Teleporting Hijinks - Mystery Encounter", () => { }); }); - describe("Option 2 - Attempt to Steal", () => { + describe("Option 2 - Use Electric/Steel Typing", () => { it("should have the correct properties", () => { const option = TeleportingHijinksEncounter.options[1]; expect(option.optionMode).toBe(MysteryEncounterOptionMode.DISABLED_OR_SPECIAL);