From c4de957ac30d691e7c801a8fec7bfe1e44cec685 Mon Sep 17 00:00:00 2001 From: Remuchi Date: Tue, 6 Feb 2024 11:58:02 +0700 Subject: [PATCH] Revert "Buff the AME until somebody fixes engineering (#24806)" This reverts commit 879b4d171efd9ae9907369d6dd856afafb381b06. --- Content.Server/Ame/AmeNodeGroup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Ame/AmeNodeGroup.cs b/Content.Server/Ame/AmeNodeGroup.cs index 25d98bf994..d970f43d8b 100644 --- a/Content.Server/Ame/AmeNodeGroup.cs +++ b/Content.Server/Ame/AmeNodeGroup.cs @@ -181,7 +181,7 @@ public sealed class AmeNodeGroup : BaseNodeGroup // Fuel is squared so more fuel vastly increases power and efficiency // We divide by the number of cores so a larger AME is less efficient at the same fuel settings // this results in all AMEs having the same efficiency at the same fuel-per-core setting - return 2000000f * fuel * fuel / cores; + return 20000f * fuel * fuel / cores; } public int GetTotalStability()