@@ -276,7 +276,7 @@ public static void NetworkShow(List<NetworkedObject> networkedObjects, ulong cli
276276 SpawnManager . WriteSpawnCallForObject ( stream , clientId , networkedObjects [ i ] , payload ) ;
277277 }
278278
279- InternalMessageSender . Send ( MLAPIConstants . MLAPI_ADD_OBJECTS , "MLAPI_INTERNAL" , stream , SecuritySendFlags . None , null ) ;
279+ InternalMessageSender . Send ( clientId , MLAPIConstants . MLAPI_ADD_OBJECTS , "MLAPI_INTERNAL" , stream , SecuritySendFlags . None , null ) ;
280280 }
281281 }
282282
@@ -316,7 +316,7 @@ public void NetworkHide(ulong clientId)
316316 {
317317 writer . WriteUInt64Packed ( NetworkId ) ;
318318
319- InternalMessageSender . Send ( MLAPIConstants . MLAPI_DESTROY_OBJECT , "MLAPI_INTERNAL" , stream , SecuritySendFlags . None , null ) ;
319+ InternalMessageSender . Send ( clientId , MLAPIConstants . MLAPI_DESTROY_OBJECT , "MLAPI_INTERNAL" , stream , SecuritySendFlags . None , null ) ;
320320 }
321321 }
322322 }
@@ -368,7 +368,7 @@ public static void NetworkHide(List<NetworkedObject> networkedObjects, ulong cli
368368 }
369369 }
370370
371- InternalMessageSender . Send ( MLAPIConstants . MLAPI_DESTROY_OBJECTS , "MLAPI_INTERNAL" , stream , SecuritySendFlags . None , null ) ;
371+ InternalMessageSender . Send ( clientId , MLAPIConstants . MLAPI_DESTROY_OBJECTS , "MLAPI_INTERNAL" , stream , SecuritySendFlags . None , null ) ;
372372 }
373373 }
374374
0 commit comments