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
}
///