From 7c2810d5ce8acfb570ddfacc200ccd7758b55fd2 Mon Sep 17 00:00:00 2001 From: Tuxxego <65312637+Tuxxego@users.noreply.github.com> Date: Tue, 17 Jun 2025 15:03:14 -0400 Subject: [PATCH] 1 character fix that somehow fixes localization for NCMS buttons --- ncms_compatible_layer/NCMS/Utils/PowerButtons.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ncms_compatible_layer/NCMS/Utils/PowerButtons.cs b/ncms_compatible_layer/NCMS/Utils/PowerButtons.cs index 3adf051..dad1af9 100644 --- a/ncms_compatible_layer/NCMS/Utils/PowerButtons.cs +++ b/ncms_compatible_layer/NCMS/Utils/PowerButtons.cs @@ -23,7 +23,7 @@ public static PowerButton CreateButton(string name, Sprite sprite, string title, Transform parent = null, UnityAction call = null) { LM.AddToCurrentLocale(name, title); - LM.AddToCurrentLocale(name + " Description", description); + LM.AddToCurrentLocale(name + " description", description); LM.ApplyLocale(false); PowerButton asPowerButton; switch (type) @@ -173,4 +173,4 @@ public static void ToggleButton(string name) } } } -} \ No newline at end of file +}