fix MobSend size

This commit is contained in:
2022-06-27 13:12:20 +02:00
parent 31a0027bfc
commit d3c6ff3988

View File

@@ -384,8 +384,8 @@ public:
}; };
struct MobSend { // represents a mob send struct MobSend { // represents a mob send
game::MobType mobType; game::MobType mobType : 4;
game::MobLevel mobLevel; game::MobLevel mobLevel : 4;
std::uint8_t mobCount; // the max is 12 std::uint8_t mobCount; // the max is 12
}; };