From 52f3d57721c717ae6f15cfb94ad60ca33337825b Mon Sep 17 00:00:00 2001 From: Aaro Varis Date: Mon, 10 Mar 2025 01:54:50 +0200 Subject: [PATCH] enable periodic plug sync --- BoneSync/Sync/Components/SyncableNetworking.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BoneSync/Sync/Components/SyncableNetworking.cs b/BoneSync/Sync/Components/SyncableNetworking.cs index 3f2c844..080f084 100644 --- a/BoneSync/Sync/Components/SyncableNetworking.cs +++ b/BoneSync/Sync/Components/SyncableNetworking.cs @@ -33,7 +33,7 @@ namespace BoneSync.Sync.Components { TrySendAISync(); TrySendObjectSync(); - //TrySendPlugSync(); + TrySendPlugSync(); yield return new WaitForSeconds(!Registered ? 1 : 1 / SYNC_FPS); } _syncCoroutineRunning = false;