forked from OpenWF/SpaceNinjaServer
		
	fix: exclude railjack missions from archon hunt (#2002)
Closes #2001 Reviewed-on: OpenWF/SpaceNinjaServer#2002 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:
		
							parent
							
								
									bb606f3a95
								
							
						
					
					
						commit
						58549c1488
					
				@ -1209,7 +1209,8 @@ export const getLiteSortie = (week: number): ILiteSortie => {
 | 
				
			|||||||
            value.factionIndex !== undefined &&
 | 
					            value.factionIndex !== undefined &&
 | 
				
			||||||
            value.factionIndex < 2 &&
 | 
					            value.factionIndex < 2 &&
 | 
				
			||||||
            !isArchwingMission(value) &&
 | 
					            !isArchwingMission(value) &&
 | 
				
			||||||
            value.missionIndex != 0 // Exclude MT_ASSASSINATION
 | 
					            value.missionIndex != 0 && // Exclude MT_ASSASSINATION
 | 
				
			||||||
 | 
					            value.missionIndex != 32 // Exclude railjack
 | 
				
			||||||
        ) {
 | 
					        ) {
 | 
				
			||||||
            nodes.push(key);
 | 
					            nodes.push(key);
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user