From e34a973f647bc6b7814ad1f3e837689f8478b84a Mon Sep 17 00:00:00 2001 From: untodesu Date: Sat, 22 Mar 2025 15:08:17 +0500 Subject: A bunch of pre-release fixes - Updated localization for protocol messages - Added item registry check into server-side - Slightly improved how features are stored --- game/shared/protocol.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'game/shared/protocol.hh') diff --git a/game/shared/protocol.hh b/game/shared/protocol.hh index 0b8b0f1..727ab1f 100644 --- a/game/shared/protocol.hh +++ b/game/shared/protocol.hh @@ -118,8 +118,8 @@ struct protocol::StatusResponse final : public protocol::Base<0x0001> { struct protocol::LoginRequest final : public protocol::Base<0x0002> { std::uint32_t version; - std::uint64_t voxel_def_checksum; - std::uint64_t item_def_checksum; + std::uint64_t voxel_registry_checksum; + std::uint64_t item_registry_checksum; std::uint64_t password_hash; std::string username; }; -- cgit