Skip to content

Commit

Permalink
fix: player icon byte size
Browse files Browse the repository at this point in the history
  • Loading branch information
murilo09 committed Dec 1, 2024
1 parent 5a8de41 commit 52c9aa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/network/protocol/protocolgame.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4589,7 +4589,7 @@ void ProtocolGame::sendIcons(const std::unordered_set<PlayerIcon> &iconSet, cons
msg.add<uint16_t>(static_cast<uint16_t>(icons));
} else {
// Send as uint32_t in new protocol
msg.add<uint32_t>(icons);
msg.add<uint64_t>(icons);
msg.addByte(enumToValue(iconBakragore)); // Icons Bakragore
}

Expand Down

0 comments on commit 52c9aa0

Please sign in to comment.