fix mpc resetting on each world load (#1588)

This commit is contained in:
David Markowitz 2024-05-20 00:43:57 -07:00 committed by GitHub
parent c8e0bb0db0
commit d8f079cb1b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -412,7 +412,8 @@ void GameMessages::SendPlatformResync(Entity* entity, const SystemAddress& sysAd
bitStream.Write(qUnexpectedRotation.w); bitStream.Write(qUnexpectedRotation.w);
} }
SEND_PACKET_BROADCAST; if (sysAddr == UNASSIGNED_SYSTEM_ADDRESS) SEND_PACKET_BROADCAST;
SEND_PACKET;
} }
void GameMessages::SendRestoreToPostLoadStats(Entity* entity, const SystemAddress& sysAddr) { void GameMessages::SendRestoreToPostLoadStats(Entity* entity, const SystemAddress& sysAddr) {