From 60f88b1fd65b5954cc72ca10140f096841aaf78c Mon Sep 17 00:00:00 2001 From: liltenhead <104418166+liltenhead@users.noreply.github.com> Date: Fri, 13 Oct 2023 16:42:46 -0700 Subject: [PATCH] Decrease AME stability damage (#20963) --- Content.Server/Ame/AmeNodeGroup.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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) -- 2.51.2