Skip to content

Commit

Permalink
fixed N-S firemission direction
Browse files Browse the repository at this point in the history
  • Loading branch information
mullenpaul committed Nov 5, 2023
1 parent ab85724 commit f2cdc14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tgui/packages/tgui/interfaces/MfdPanels/TargetAquisition.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ interface FiremissionContext {
}

const directionLookup = new Map<string, number>();
directionLookup['N-S'] = 1;
directionLookup['S-N'] = 2;
directionLookup['N-S'] = 2;
directionLookup['S-N'] = 1;
directionLookup['E-W'] = 8;
directionLookup['W-E'] = 4;

Expand Down

0 comments on commit f2cdc14

Please sign in to comment.