diff --git a/MCI/InstanceControl.cs b/MCI/InstanceControl.cs index 104b98c..5ae271b 100644 --- a/MCI/InstanceControl.cs +++ b/MCI/InstanceControl.cs @@ -136,7 +136,10 @@ internal static IEnumerator _CreatePlayerInstanceEnumerator() sampleC.Character.MyPhysics.ResetMoveState(); if (SubmergedCompatibility.Loaded) + { SubmergedCompatibility.ImpartSub(sampleC.Character); + sampleC.Character.isDummy = true; + } if (IL2CPPChainloader.Instance.Plugins.ContainsKey("me.eisbison.theotherroles")) sampleC.Character.GetComponent().enabled = true; diff --git a/MCI/Patches/OnGameStart.cs b/MCI/Patches/OnGameStart.cs index bf49533..e3b9e77 100644 --- a/MCI/Patches/OnGameStart.cs +++ b/MCI/Patches/OnGameStart.cs @@ -13,6 +13,7 @@ public static void Prefix(AmongUsClient __instance) foreach (var p in __instance.allClients) { p.IsReady = true; + p.Character.isDummy = false; p.Character.gameObject.GetComponent().enabled = false; } }