fix: exclude SolNode63 from archon hunts
All checks were successful
Build / build (pull_request) Successful in 6m42s

This commit is contained in:
Sainan 2025-10-20 10:46:18 +02:00
parent 7fe00da2a4
commit c7d4e3619b

View File

@ -3703,7 +3703,8 @@ export const getLiteSortie = (week: number): ILiteSortie => {
value.missionType != "MT_ASSASSINATION" &&
value.missionType != "MT_JUNCTION" &&
value.missionType != "MT_LANDSCAPE" &&
value.missionType != "MT_RAILJACK"
value.missionType != "MT_RAILJACK" &&
key != "SolNode63" // This node uses GrineerForestTilesetCaves which only supports MT_CAPTURE, which is not valid for LiteSorties.
) {
nodes.push(key);
}