Skip to content

Commit

Permalink
fix: tweak bounding box for caucasus
Browse files Browse the repository at this point in the history
  • Loading branch information
b1naryth1ef committed May 9, 2022
1 parent c9af4e7 commit 8e4ad35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ function ServerContainer({ serverName }: { serverName: string }) {
let dcsMap: DCSMap | null = null;
if (refLat >= 28 && refLat <= 32 && refLng >= 29 && refLng <= 35) {
dcsMap = Syria;
} else if (refLat >= 37 && refLat <= 41 && refLng >= 31 && refLng <= 38) {
} else if (refLat >= 37 && refLat <= 41 && refLng >= 31 && refLng <= 39) {
dcsMap = Caucasus;
} else if (refLat >= 18 && refLat <= 24 && refLng >= 48 && refLng <= 54) {
dcsMap = PersianGulf;
Expand Down

0 comments on commit 8e4ad35

Please sign in to comment.