diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2025-04-16 17:10:00 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2025-04-16 17:10:00 +1000 |
commit | c59fceecf93895c7bd2b2bf9fe327dd79e9d0c51 (patch) | |
tree | c69342595e560116a03a35a35f1b0b2fa219f72f /source/core | |
parent | 7d1beb6ed8d125286ffa61e909f6389ae648e128 (diff) |
add optional data for chat messages, for custom Chat panes to read from
Diffstat (limited to 'source/core')
-rw-r--r-- | source/core/StarDataStream.cpp | 2 | ||||
-rw-r--r-- | source/core/StarNetCompatibility.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source/core/StarDataStream.cpp b/source/core/StarDataStream.cpp index 7097d63..520129f 100644 --- a/source/core/StarDataStream.cpp +++ b/source/core/StarDataStream.cpp @@ -6,7 +6,7 @@ namespace Star { -unsigned const CurrentStreamVersion = 3; +unsigned const CurrentStreamVersion = 5; // update OpenProtocolVersion too! DataStream::DataStream() : m_byteOrder(ByteOrder::BigEndian), diff --git a/source/core/StarNetCompatibility.cpp b/source/core/StarNetCompatibility.cpp index cce74dc..c5c1264 100644 --- a/source/core/StarNetCompatibility.cpp +++ b/source/core/StarNetCompatibility.cpp @@ -2,6 +2,6 @@ namespace Star { -VersionNumber const OpenProtocolVersion = 4; +VersionNumber const OpenProtocolVersion = 5; // update StreamCompatibilityVersion too! }
\ No newline at end of file |