From d3c6ff39881c12a487ea48f4019eddfe93968423 Mon Sep 17 00:00:00 2001 From: Persson-dev Date: Mon, 27 Jun 2022 13:12:20 +0200 Subject: [PATCH] fix MobSend size --- include/protocol/Protocol.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/protocol/Protocol.h b/include/protocol/Protocol.h index d5f8186..3715194 100644 --- a/include/protocol/Protocol.h +++ b/include/protocol/Protocol.h @@ -384,8 +384,8 @@ public: }; struct MobSend { // represents a mob send - game::MobType mobType; - game::MobLevel mobLevel; + game::MobType mobType : 4; + game::MobLevel mobLevel : 4; std::uint8_t mobCount; // the max is 12 };