]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Set enabled on RadiationSourceComponent to true by default (#22259)
authorNemanja <98561806+EmoGarbage404@users.noreply.github.com>
Sat, 9 Dec 2023 04:10:00 +0000 (23:10 -0500)
committerGitHub <noreply@github.com>
Sat, 9 Dec 2023 04:10:00 +0000 (23:10 -0500)
Content.Shared/Radiation/Components/RadiationSourceComponent.cs

index fa6b83993529ec3caa3b140377758b15d7fa2c15..874024a90590ee39b2cae65ecfbbad81ee540899 100644 (file)
@@ -25,5 +25,5 @@ public sealed partial class RadiationSourceComponent : Component
     public float Slope = 0.5f;
 
     [DataField, ViewVariables(VVAccess.ReadWrite)]
-    public bool Enabled;
+    public bool Enabled = true;
 }