diff options
Diffstat (limited to 'src/char/char.hpp')
-rw-r--r-- | src/char/char.hpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/char/char.hpp b/src/char/char.hpp index 4f55c04..8adac4d 100644 --- a/src/char/char.hpp +++ b/src/char/char.hpp @@ -42,6 +42,9 @@ std::chrono::seconds DEFAULT_AUTOSAVE_INTERVAL = 5_min; constexpr GmLevel default_gm_level = GmLevel::from(0_u32); +// increase the min version when the protocol is incompatible with old m+ versions +#define MIN_CLIENT_VERSION 1 + struct AuthFifoEntry { AccountId account_id; @@ -50,7 +53,7 @@ struct AuthFifoEntry IP4Address ip; int delflag; SEX sex; - unsigned short packet_tmw_version; + unsigned short packet_client_version; }; struct mmo_map_server |