diff --git a/src/blackmisc/network/fsdsetup.cpp b/src/blackmisc/network/fsdsetup.cpp index c30236c12..cfea08908 100644 --- a/src/blackmisc/network/fsdsetup.cpp +++ b/src/blackmisc/network/fsdsetup.cpp @@ -68,7 +68,7 @@ namespace BlackMisc const CFsdSetup &CFsdSetup::vatsimStandard() { - static const CFsdSetup s(AllWithoutGnd); + static const CFsdSetup s(AllParts); return s; } diff --git a/src/blackmisc/network/fsdsetup.h b/src/blackmisc/network/fsdsetup.h index 8efd916ae..e7ff3204b 100644 --- a/src/blackmisc/network/fsdsetup.h +++ b/src/blackmisc/network/fsdsetup.h @@ -49,6 +49,7 @@ namespace BlackMisc AllSending = SendAircraftParts | SendInterimPositions | SendGndFlag, //!< all out AllReceive = ReceiveAircraftParts | ReceiveInterimPositions | ReceiveGndFlag, //!< all in All = AllReceive | AllSending, //!< all + AllParts = SendAircraftParts | ReceiveAircraftParts, //!< send/receive parts AllSendingWithoutGnd = SendAircraftParts | SendInterimPositions, //!< all out, but no gnd.flag AllReceiveWithoutGnd = ReceiveAircraftParts | ReceiveInterimPositions, //!< all in, but no gnd.flag AllWithoutGnd = AllReceiveWithoutGnd | AllSendingWithoutGnd //!< all, but no gnd.flag