From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Thu, 11 May 2023 11:15:21 +0000 (-0400) Subject: Make potency visuals 1x scaling by default (#16324) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=434d0cfdf881a6d7386d03e0081b6c571488bcdf;p=space-station-14.git Make potency visuals 1x scaling by default (#16324) --- diff --git a/Content.Client/Botany/Components/PotencyVisualsComponent.cs b/Content.Client/Botany/Components/PotencyVisualsComponent.cs index c39431884c..24f3c61fcf 100644 --- a/Content.Client/Botany/Components/PotencyVisualsComponent.cs +++ b/Content.Client/Botany/Components/PotencyVisualsComponent.cs @@ -4,8 +4,8 @@ namespace Content.Client.Botany.Components; public sealed class PotencyVisualsComponent : Component { [DataField("minimumScale")] - public float MinimumScale = 0.5f; + public float MinimumScale = 1f; [DataField("maximumScale")] - public float MaximumScale = 1.5f; + public float MaximumScale = 2f; }