From 8803f98c791cf46aa9d080de30490690fbd0a0dd Mon Sep 17 00:00:00 2001 From: BIGZi0348 <118811750+BIGZi0348@users.noreply.github.com> Date: Tue, 3 Sep 2024 21:15:05 +0300 Subject: [PATCH] IonStormMoreFun (#684) --- .../Silicons/Laws/Components/IonStormTargetComponent.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Content.Shared/Silicons/Laws/Components/IonStormTargetComponent.cs b/Content.Shared/Silicons/Laws/Components/IonStormTargetComponent.cs index 341767e9ce..2d44408b8d 100644 --- a/Content.Shared/Silicons/Laws/Components/IonStormTargetComponent.cs +++ b/Content.Shared/Silicons/Laws/Components/IonStormTargetComponent.cs @@ -26,25 +26,25 @@ public sealed partial class IonStormTargetComponent : Component /// Chance to replace the lawset with a random one /// [DataField, ViewVariables(VVAccess.ReadWrite)] - public float RandomLawsetChance = 0.25f; + public float RandomLawsetChance = 0.40f; // WD was 0.25f /// /// Chance to remove a random law. /// [DataField, ViewVariables(VVAccess.ReadWrite)] - public float RemoveChance = 0.2f; + public float RemoveChance = 0.15f; // WD was 0.20f /// /// Chance to replace a random law with the new one, rather than have it be a glitched-order law. /// [DataField, ViewVariables(VVAccess.ReadWrite)] - public float ReplaceChance = 0.2f; + public float ReplaceChance = 0.15f; // WD was 0.20f /// /// Chance to shuffle laws after everything is done. /// [DataField, ViewVariables(VVAccess.ReadWrite)] - public float ShuffleChance = 0.2f; + public float ShuffleChance = 0.15f; // WD was 0.20f } ///