From e9822b949096ccf8dac320a83a9f90e706f738d4 Mon Sep 17 00:00:00 2001 From: rootdarkarchon Date: Mon, 17 Jul 2023 09:12:30 +0200 Subject: [PATCH] adjust naming for heels --- MareAPI | 2 +- MareSynchronos/Services/PluginWarningNotificationService.cs | 2 +- MareSynchronos/UI/UISharedService.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/MareAPI b/MareAPI index 51645cb..a5373bc 160000 --- a/MareAPI +++ b/MareAPI @@ -1 +1 @@ -Subproject commit 51645cbc7913b594a2c5f4b52562396f7902f5eb +Subproject commit a5373bca246ee3dab590a2eac68d974ba546ee8c diff --git a/MareSynchronos/Services/PluginWarningNotificationService.cs b/MareSynchronos/Services/PluginWarningNotificationService.cs index db48b45..36bd68d 100644 --- a/MareSynchronos/Services/PluginWarningNotificationService.cs +++ b/MareSynchronos/Services/PluginWarningNotificationService.cs @@ -38,7 +38,7 @@ public class PluginWarningNotificationService List missingPluginsForData = new(); if (changes.Contains(PlayerChanges.Heels) && !warning.ShownHeelsWarning && !_ipcManager.CheckHeelsApi()) { - missingPluginsForData.Add("Heels"); + missingPluginsForData.Add("SimpleHeels"); warning.ShownHeelsWarning = true; } if (changes.Contains(PlayerChanges.Customize) && !warning.ShownCustomizePlusWarning && !_ipcManager.CheckCustomizePlusApi()) diff --git a/MareSynchronos/UI/UISharedService.cs b/MareSynchronos/UI/UISharedService.cs index de16729..fac57ae 100644 --- a/MareSynchronos/UI/UISharedService.cs +++ b/MareSynchronos/UI/UISharedService.cs @@ -621,7 +621,7 @@ public partial class UiSharedService : DisposableMediatorSubscriberBase ImGui.TextColored(glamourerColor, _glamourerExists ? "Available" : "Unavailable"); ImGui.Text("Optional Addons"); ImGui.SameLine(); - ImGui.Text("Heels:"); + ImGui.Text("SimpleHeels:"); ImGui.SameLine(); ImGui.TextColored(heelsColor, _heelsExists ? "Available" : "Unavailable"); ImGui.SameLine();