fix: exclude SolNode63 from archon hunts (#2918)

Reviewed-on: OpenWF/SpaceNinjaServer#2918
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-10-21 00:43:03 -07:00 committed by Sainan
parent 4f8b07322e
commit be8e2feae6

View File

@ -3703,7 +3703,8 @@ export const getLiteSortie = (week: number): ILiteSortie => {
value.missionType != "MT_ASSASSINATION" && value.missionType != "MT_ASSASSINATION" &&
value.missionType != "MT_JUNCTION" && value.missionType != "MT_JUNCTION" &&
value.missionType != "MT_LANDSCAPE" && 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); nodes.push(key);
} }