Update PA admin warnings (#28911)

With singulo fixed, PA strength 3 and below (level 2) are now safe.
Update the admin logging to reflect this.
This commit is contained in:
Partmedia
2024-06-12 18:15:15 -08:00
committed by GitHub
parent 12911d292f
commit dc0327c3c0
2 changed files with 5 additions and 6 deletions

View File

@@ -159,11 +159,10 @@ public sealed partial class ParticleAcceleratorSystem
var impact = strength switch
{
ParticleAcceleratorPowerState.Standby => LogImpact.Low,
ParticleAcceleratorPowerState.Level0 => LogImpact.Medium,
ParticleAcceleratorPowerState.Level1 => LogImpact.High,
ParticleAcceleratorPowerState.Level2
or ParticleAcceleratorPowerState.Level3
or _ => LogImpact.Extreme,
ParticleAcceleratorPowerState.Level0
or ParticleAcceleratorPowerState.Level1
or ParticleAcceleratorPowerState.Level2 => LogImpact.Medium,
ParticleAcceleratorPowerState.Level3 => LogImpact.Extreme,
};
_adminLogger.Add(LogType.Action, impact, $"{ToPrettyString(player):player} has set the strength of {ToPrettyString(uid)} to {strength}");