]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Changed radio jammer wattage from 6 -> 2 (#25432)
authorbeck-thompson <107373427+beck-thompson@users.noreply.github.com>
Thu, 22 Feb 2024 07:32:43 +0000 (23:32 -0800)
committerGitHub <noreply@github.com>
Thu, 22 Feb 2024 07:32:43 +0000 (18:32 +1100)
Changed wattage from 6 -> 2

Content.Server/Radio/Components/RadioJammerComponent.cs

index 69837200ac3293af68984149711b526d67fb5283..93504ef9573156d7aa1552e4bd4782914a6378d9 100644 (file)
@@ -16,5 +16,5 @@ public sealed partial class RadioJammerComponent : Component
     /// Power usage per second when enabled
     /// </summary>
     [DataField("wattage"), ViewVariables(VVAccess.ReadWrite)]
-    public float Wattage = 6f;
+    public float Wattage = 2f;
 }