From 9d20ccaf8b31f126770b1c3a30c8211e315597d1 Mon Sep 17 00:00:00 2001 From: Sainan <63328889+Sainan@users.noreply.github.com> Date: Thu, 1 May 2025 02:43:55 +0200 Subject: [PATCH] fix: omit void fissures for U35.1 This version also has a script error even tho it should know most of the new deimos nodes... --- src/services/worldStateService.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/services/worldStateService.ts b/src/services/worldStateService.ts index a8b4cf5a..c9c9244c 100644 --- a/src/services/worldStateService.ts +++ b/src/services/worldStateService.ts @@ -717,8 +717,8 @@ export const getWorldState = (buildLabel?: string): IWorldState => { SyndicateMissions: [...staticWorldState.SyndicateMissions] }; - // Omit void fissures for versions prior to Whispers in the Walls to avoid errors with the unknown deimos nodes having void fissures. - if (buildLabel && version_compare(buildLabel, "2023.11.06.13.39") <= 0) { + // Omit void fissures for versions prior to Dante Unbound to avoid script errors. + if (buildLabel && version_compare(buildLabel, "2024.03.24.20.00") < 0) { worldState.ActiveMissions = []; } -- 2.47.2