From efa77f83cc29b70cbcc6db43402f8c8f162c698d Mon Sep 17 00:00:00 2001 From: RisaDev <151885272+RisaDev@users.noreply.github.com> Date: Thu, 28 Mar 2024 22:04:37 +0300 Subject: [PATCH] Small fixes --- CustomizePlus/UI/Windows/MainWindow/Tabs/Debug/IPCTestTab.cs | 2 +- .../UI/Windows/MainWindow/Tabs/Templates/BoneEditorPanel.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CustomizePlus/UI/Windows/MainWindow/Tabs/Debug/IPCTestTab.cs b/CustomizePlus/UI/Windows/MainWindow/Tabs/Debug/IPCTestTab.cs index 1106888..e7ea908 100644 --- a/CustomizePlus/UI/Windows/MainWindow/Tabs/Debug/IPCTestTab.cs +++ b/CustomizePlus/UI/Windows/MainWindow/Tabs/Debug/IPCTestTab.cs @@ -310,7 +310,7 @@ public class IPCTestTab //: IDisposable } [EzIPCEvent("Profile.OnUpdate")] - private void OnProfileUpdate(Character Character, Guid? ProfileUniqueId) + private void OnProfileUpdate(Character Character, Guid ProfileUniqueId) { _logger.Debug($"IPC Test Tab - OnProfileUpdate: Character: {Character.Name.ToString().Incognify()}, Profile ID: {(ProfileUniqueId != Guid.Empty ? ProfileUniqueId.ToString() : "no id")}"); } diff --git a/CustomizePlus/UI/Windows/MainWindow/Tabs/Templates/BoneEditorPanel.cs b/CustomizePlus/UI/Windows/MainWindow/Tabs/Templates/BoneEditorPanel.cs index 1039d89..3468778 100644 --- a/CustomizePlus/UI/Windows/MainWindow/Tabs/Templates/BoneEditorPanel.cs +++ b/CustomizePlus/UI/Windows/MainWindow/Tabs/Templates/BoneEditorPanel.cs @@ -159,7 +159,7 @@ public class BoneEditorPanel _configuration.Save(); } ImGuiUtil.LabeledHelpMarker("Limit to my creatures", - "When enabled limits the character search to only your own summons, mounts and minions.\nUseful when there is possibility there will be another character with that name owned by another player.\n* For battle chocobo use \"Chocobo\" as character name.\n** If you are changing root scale for mount and want to keep your scale make sure your own scale is set to anything other than default value."); + "When enabled limits the character search to only your own summons, mounts and minions.\nUseful when there is possibility there will be another character with that name owned by another player.\n* For battle chocobo use \"Chocobo\" as character name."); } }