From 3e9555700ef35d128dbfc835544d9e98b4314dab Mon Sep 17 00:00:00 2001 From: domin2ktr <100111040+domin2ktr@users.noreply.github.com> Date: Sun, 21 Dec 2025 22:00:19 +0300 Subject: [PATCH 1/2] Update MicrobeColony.cs --- src/microbe_stage/components/MicrobeColony.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/microbe_stage/components/MicrobeColony.cs b/src/microbe_stage/components/MicrobeColony.cs index d1377ccca74..84b3aede4f5 100644 --- a/src/microbe_stage/components/MicrobeColony.cs +++ b/src/microbe_stage/components/MicrobeColony.cs @@ -989,7 +989,7 @@ public static void CalculateRotationSpeed(this ref MicrobeColony colony) // fastest cell inside it var memberRotation = MicrobeInternalCalculations .CalculateRotationSpeed(colonyMember.Get().Organelles!.Organelles) - * (1 + 0.03f * distanceSquared); + * (1 + 0.01f * distanceSquared); colonyRotation += memberRotation; } From 94b4a27002efbf29c8f0bc0455c9c80e640b4739 Mon Sep 17 00:00:00 2001 From: domin2ktr <100111040+domin2ktr@users.noreply.github.com> Date: Tue, 23 Dec 2025 12:43:48 +0300 Subject: [PATCH 2/2] Update MicrobeColony.cs --- src/microbe_stage/components/MicrobeColony.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/microbe_stage/components/MicrobeColony.cs b/src/microbe_stage/components/MicrobeColony.cs index 84b3aede4f5..310fcd8ac81 100644 --- a/src/microbe_stage/components/MicrobeColony.cs +++ b/src/microbe_stage/components/MicrobeColony.cs @@ -989,7 +989,7 @@ public static void CalculateRotationSpeed(this ref MicrobeColony colony) // fastest cell inside it var memberRotation = MicrobeInternalCalculations .CalculateRotationSpeed(colonyMember.Get().Organelles!.Organelles) - * (1 + 0.01f * distanceSquared); + * (1 + 0.007f * distanceSquared); colonyRotation += memberRotation; }