refactor: format all files

This commit is contained in:
2021-10-10 12:28:32 +02:00
parent 587d611dc8
commit 5d7ec91ec5
16 changed files with 1930 additions and 1930 deletions

View File

@@ -298,7 +298,7 @@ void WorldDataPacket::Deserialize(DataBuffer& data) {
game::ChunkData::value_type value;
if (startLong == endLong) {
value = (chunkData[startLong] >> startOffset);
} else {
} else {
int endOffset = BITS_IN_LONG - startOffset;
value = (chunkData[startLong] >> startOffset | chunkData[endLong] << endOffset);
}