add semi-colons to macros consistently

This commit is contained in:
Aaron Kimbre
2022-08-05 08:40:12 -05:00
parent 88f316bf93
commit 9e4ce24fd2
8 changed files with 332 additions and 332 deletions

View File

@@ -772,9 +772,9 @@ void HandlePacket(Packet* packet) {
Game::logger->Log("MasterServer", "Got affirmation request of transfer %llu", requestID);
CBITSTREAM
CBITSTREAM;
PacketUtils::WriteHeader(bitStream, MASTER, MSG_MASTER_AFFIRM_TRANSFER_RESPONSE);
PacketUtils::WriteHeader(bitStream, MASTER, MSG_MASTER_AFFIRM_TRANSFER_RESPONSE);
bitStream.Write(requestID);
Game::server->SendToMaster(&bitStream);