fix: omit void fissures for U35.1 (#1935)
Some checks failed
Build / build (push) Has been cancelled
Build Docker image / docker (push) Has been cancelled

This version also has a script error even tho it should know most of the new deimos nodes...

Reviewed-on: #1935
Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com>
Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>
This commit is contained in:
Sainan 2025-05-01 13:52:43 -07:00 committed by Sainan
parent cddd4bdf5c
commit 19b04533df

View File

@ -721,8 +721,8 @@ export const getWorldState = (buildLabel?: string): IWorldState => {
SyndicateMissions: [...staticWorldState.SyndicateMissions] 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. // Omit void fissures for versions prior to Dante Unbound to avoid script errors.
if (buildLabel && version_compare(buildLabel, "2023.11.06.13.39") <= 0) { if (buildLabel && version_compare(buildLabel, "2024.03.24.20.00") < 0) {
worldState.ActiveMissions = []; worldState.ActiveMissions = [];
} }