fix: omit void fissures for U35.1
All checks were successful
Build / build (push) Successful in 1m38s
Build / build (pull_request) Successful in 1m30s

This version also has a script error even tho it should know most of the new deimos nodes...
This commit is contained in:
Sainan 2025-05-01 02:43:55 +02:00
parent 2c3043f40e
commit 9d20ccaf8b

View File

@ -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 = [];
}