From: liltenhead <104418166+liltenhead@users.noreply.github.com> Date: Fri, 13 Oct 2023 23:42:46 +0000 (-0700) Subject: Decrease AME stability damage (#20963) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=60f88b1fd65b5954cc72ca10140f096841aaf78c;p=space-station-14.git Decrease AME stability damage (#20963) --- diff --git a/Content.Server/Ame/AmeNodeGroup.cs b/Content.Server/Ame/AmeNodeGroup.cs index ab29d7037f..d0e854469f 100644 --- a/Content.Server/Ame/AmeNodeGroup.cs +++ b/Content.Server/Ame/AmeNodeGroup.cs @@ -145,10 +145,10 @@ public sealed class AmeNodeGroup : BaseNodeGroup instability = 1; // overloadVsSizeResult > 5: if (overloadVsSizeResult > 5) - instability = 5; - // overloadVsSizeResult > 10: This will explode in at most 5 injections. + instability = 3; + // overloadVsSizeResult > 10: This will explode in at most 20 injections. if (overloadVsSizeResult > 10) - instability = 20; + instability = 5; // Apply calculated instability if (instability == 0)