From 5062449ea95e0ab9d6d7b20fbc42a3aeb2cd0573 Mon Sep 17 00:00:00 2001 From: Roland Rossgotterer Date: Wed, 18 Sep 2019 15:26:47 +0200 Subject: [PATCH] Increase Observer range to 300 nm According to CoC C8, OBS stations are allowed to have up to 300 nm maximum range. ref T724 --- src/blackcore/fsd/fsdclient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blackcore/fsd/fsdclient.cpp b/src/blackcore/fsd/fsdclient.cpp index 1c5bf36e1..08fc95aa7 100644 --- a/src/blackcore/fsd/fsdclient.cpp +++ b/src/blackcore/fsd/fsdclient.cpp @@ -328,7 +328,7 @@ namespace BlackCore void FSDClient::sendAtcDataUpdate(double latitude, double longitude) { - AtcDataUpdate atcDataUpdate(m_ownCallsign.asString(), 199998, CFacilityType::OBS, 10, AtcRating::Observer, latitude, longitude, 0); + AtcDataUpdate atcDataUpdate(m_ownCallsign.asString(), 199998, CFacilityType::OBS, 300, AtcRating::Observer, latitude, longitude, 0); sendMessage(atcDataUpdate); }