From 024d2f3f986afdacd36ebc0b5b90255bdabe3545 Mon Sep 17 00:00:00 2001 From: crazybrain23 <44417085+crazybrain23@users.noreply.github.com> Date: Mon, 14 Aug 2023 22:01:56 +0100 Subject: [PATCH] Singularity Stability Tweaks (fixed) (#19135) * Singulo drain * PA levels --------- Co-authored-by: liltenhead --- .../EntitySystems/ParticleAcceleratorSystem.Emitter.cs | 4 ++-- .../Singularity/EntitySystems/SingularitySystem.cs | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.Emitter.cs b/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.Emitter.cs index 1dfcb4241c..dbe55bb6e5 100644 --- a/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.Emitter.cs +++ b/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.Emitter.cs @@ -47,8 +47,8 @@ public sealed partial class ParticleAcceleratorSystem { ParticleAcceleratorPowerState.Standby => 0, ParticleAcceleratorPowerState.Level0 => 1, - ParticleAcceleratorPowerState.Level1 => 3, - ParticleAcceleratorPowerState.Level2 => 6, + ParticleAcceleratorPowerState.Level1 => 2, + ParticleAcceleratorPowerState.Level2 => 3, ParticleAcceleratorPowerState.Level3 => 10, _ => 0, } * 10; diff --git a/Content.Server/Singularity/EntitySystems/SingularitySystem.cs b/Content.Server/Singularity/EntitySystems/SingularitySystem.cs index e4416b21e1..37e26b9cc0 100644 --- a/Content.Server/Singularity/EntitySystems/SingularitySystem.cs +++ b/Content.Server/Singularity/EntitySystems/SingularitySystem.cs @@ -130,9 +130,9 @@ public sealed class SingularitySystem : SharedSingularitySystem singularity.Energy = value; SetLevel(uid, value switch { - >= 1500 => 6, - >= 1000 => 5, - >= 600 => 4, + >= 2400 => 6, + >= 1600 => 5, + >= 900 => 4, >= 300 => 3, >= 200 => 2, > 0 => 1, @@ -312,8 +312,8 @@ public sealed class SingularitySystem : SharedSingularitySystem { 6 => 20, 5 => 15, - 4 => 10, - 3 => 6, + 4 => 12, + 3 => 8, 2 => 2, 1 => 1, _ => 0