From 43ea25b9e3dcbd7db27219859ee637c3b0d6d377 Mon Sep 17 00:00:00 2001 From: Marek Sorokin Date: Mon, 27 Oct 2025 14:58:20 +0100 Subject: [PATCH] online fix --- Game/Scripts/Networking/SteamCharacterNetworkBridge.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Game/Scripts/Networking/SteamCharacterNetworkBridge.cs b/Game/Scripts/Networking/SteamCharacterNetworkBridge.cs index c4614c2..4a331be 100644 --- a/Game/Scripts/Networking/SteamCharacterNetworkBridge.cs +++ b/Game/Scripts/Networking/SteamCharacterNetworkBridge.cs @@ -204,6 +204,8 @@ namespace MegaKoop.Game.Networking if (unityController != null) { unityController.enabled = true; + unityController.detectCollisions = true; + unityController.enableOverlapRecovery = true; } } else @@ -213,7 +215,9 @@ namespace MegaKoop.Game.Networking var unityController = characterController.GetComponent(); if (unityController != null) { - unityController.enabled = false; + unityController.enabled = true; + unityController.detectCollisions = true; + unityController.enableOverlapRecovery = false; } } }