From ad8406e2d6ae1aa1f5bfe7919c94809c06adf58d Mon Sep 17 00:00:00 2001 From: Lacyway <20912169+Lacyway@users.noreply.github.com> Date: Mon, 6 May 2024 14:44:24 +0200 Subject: [PATCH] Update extract text when using modifiers --- Fika.Core/Coop/FreeCamera/FreeCameraController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Fika.Core/Coop/FreeCamera/FreeCameraController.cs b/Fika.Core/Coop/FreeCamera/FreeCameraController.cs index 29750ec4..f1cd7c20 100644 --- a/Fika.Core/Coop/FreeCamera/FreeCameraController.cs +++ b/Fika.Core/Coop/FreeCamera/FreeCameraController.cs @@ -236,7 +236,7 @@ private void ShowExtractMessage() if (FikaPlugin.ExtractKey.Value.Modifiers.Count() > 0) { string modifiers = string.Join("+", FikaPlugin.ExtractKey.Value.Modifiers); - text = modifiers + "+" + text; + text = modifiers + " + " + text; } extractText = FikaUIUtils.CreateOverlayText($"Press '{text}' to extract"); }