From 6ebc2aea5d48034a3e7030fa58f7e582668bd5a7 Mon Sep 17 00:00:00 2001 From: Debug <49997488+DebugOk@users.noreply.github.com> Date: Fri, 8 Mar 2024 09:35:01 +0100 Subject: [PATCH] Revert "Revert AME buff (#930)" This reverts commit 152a190d01111073a9357ff30185a58d7de15cf0. --- 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 9acc1034ddf..608356f7605 100644 --- a/Content.Server/Ame/AmeNodeGroup.cs +++ b/Content.Server/Ame/AmeNodeGroup.cs @@ -182,7 +182,7 @@ public float CalculatePower(int fuel, int cores) // 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 20000f * fuel * fuel / cores; // Delt V - Revert upstream buff for normal AME operation + return 2000000f * fuel * fuel / cores; } public int GetTotalStability()