diff --git a/Dalamud/Fools/Plugins/YesHealMePluginWindow.cs b/Dalamud/Fools/Plugins/YesHealMePluginWindow.cs index 4bb30ab0d..fc025af35 100644 --- a/Dalamud/Fools/Plugins/YesHealMePluginWindow.cs +++ b/Dalamud/Fools/Plugins/YesHealMePluginWindow.cs @@ -19,14 +19,15 @@ public static class YesHealMePluginWindow private static readonly Vector2 Position = new(200, 200); private static readonly Vector2 Size = new(Length, SectionHeight); - private static IEnumerable Characters(PartyListAddon partyListAddon) + private static IEnumerable Characters(PartyListAddon partyListAddon) { return partyListAddon.Any() ? partyListAddon.Select(pla => pla.PlayerCharacter) : new[] { Service.Get().LocalPlayer }; } - private static List HurtingCharacters(IEnumerable characters) + private static List HurtingCharacters(IEnumerable characters) { return characters + .Where(pc => pc is not null) .Where(pc => pc.CurrentHp < pc.MaxHp || Service.Get() .IsDevMenuOpen)