From 434d0cfdf881a6d7386d03e0081b6c571488bcdf Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Thu, 11 May 2023 07:15:21 -0400 Subject: [PATCH] Make potency visuals 1x scaling by default (#16324) --- Content.Client/Botany/Components/PotencyVisualsComponent.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.51.2