]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Buff the AME until somebody fixes engineering (#24806)
authorPieter-Jan Briers <pieterjan.briers+git@gmail.com>
Thu, 1 Feb 2024 11:06:52 +0000 (12:06 +0100)
committerGitHub <noreply@github.com>
Thu, 1 Feb 2024 11:06:52 +0000 (12:06 +0100)
All the engineering numbers are complete unusable garbage and it's apparently completely impossible to properly set up power on some maps.

This is a band-aid fix (and apology to all engineering players) until somebody fixes this shit properly.

Content.Server/Ame/AmeNodeGroup.cs

index d970f43d8be23c41eb42014a95b868bddfc06ddc..25d98bf9942d4c79cf5b03a10b00c87b02de612c 100644 (file)
@@ -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 20000f * fuel * fuel / cores;
+        return 2000000f * fuel * fuel / cores;
     }
 
     public int GetTotalStability()