chore: Change LDFFormat to use BitStream references (#1467)

This commit is contained in:
jadebenn
2024-02-26 08:15:29 -06:00
committed by GitHub
parent c3743877df
commit 94a467b361
5 changed files with 31 additions and 31 deletions

View File

@@ -31,7 +31,7 @@ void ScriptComponent::Serialize(RakNet::BitStream* outBitStream, bool bIsInitial
ldfData.Write<uint32_t>(networkSettings.size());
for (auto* networkSetting : networkSettings) {
networkSetting->WriteToPacket(&ldfData);
networkSetting->WriteToPacket(ldfData);
}
// Finally write everything to the stream