Issue #94 Add server capability flag for VISUPDATE

This commit is contained in:
Mat Sutcliffe
2021-10-11 18:42:02 +01:00
parent 3f57c66784
commit a583ac056c
10 changed files with 29 additions and 9 deletions

View File

@@ -166,11 +166,14 @@ namespace BlackCore::Fsd
/*! Can send/receive fast position updates (pilot only). */
FastPos = (1 << 6),
/*! Can send/receive visual position updates (pilot only). */
VisPos = (1 << 7),
/*! Stealth mode */
Stealth = (1 << 7),
Stealth = (1 << 8),
/*! Aircraft Config */
AircraftConfig = (1 << 8)
AircraftConfig = (1 << 9)
};
//! Operators