chore: Convert EchoSyncSkill to use BitStream references (#1473)

This commit is contained in:
jadebenn
2024-02-26 08:08:56 -06:00
committed by GitHub
parent 5c1ed332c4
commit ab937055e7
3 changed files with 16 additions and 16 deletions

View File

@@ -256,7 +256,7 @@ bool BehaviorContext::CalculateUpdate(const float deltaTime) {
BitStreamUtils::WriteHeader(message, eConnectionType::CLIENT, eClientMessageType::GAME_MSG);
message.Write(this->originator);
echo.Serialize(&message);
echo.Serialize(message);
Game::server->Send(&message, UNASSIGNED_SYSTEM_ADDRESS, true);
}