chore: Change EchoStartSkill to use BitStream reference (#1472)

This commit is contained in:
jadebenn
2024-02-26 08:09:45 -06:00
committed by GitHub
parent ab937055e7
commit c3743877df
3 changed files with 40 additions and 40 deletions

View File

@@ -305,7 +305,7 @@ SkillExecutionResult SkillComponent::CalculateBehavior(const uint32_t skillId, c
BitStreamUtils::WriteHeader(message, eConnectionType::CLIENT, eClientMessageType::GAME_MSG);
message.Write(this->m_Parent->GetObjectID());
start.Serialize(&message);
start.Serialize(message);
Game::server->Send(&message, UNASSIGNED_SYSTEM_ADDRESS, true);
}