From ef478b05522f8bc0dd5a7eab68c0e05263cc63d9 Mon Sep 17 00:00:00 2001 From: Brues <5278969+brues-code@users.noreply.github.com> Date: Sat, 27 Jun 2026 18:55:49 -0500 Subject: [PATCH] thirdparty-vanilla: collapse solo check to not IsInGroup() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The HealComm self-message guard was `not UnitInRaid("player") and GetNumPartyMembers() < 1` — the long form of "in no group at all." --- modules/thirdparty-vanilla.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/thirdparty-vanilla.lua b/modules/thirdparty-vanilla.lua index b4e47b84..1fe986b4 100644 --- a/modules/thirdparty-vanilla.lua +++ b/modules/thirdparty-vanilla.lua @@ -1182,7 +1182,7 @@ pfUI:RegisterModule("thirdparty-vanilla", function() -- use pfUI frames to draw healComm predictions local pfHookHealCommSendAddonMessage = HealComm.SendAddonMessage function HealComm.SendAddonMessage(this, msg) - if not UnitInRaid("player") and GetNumPartyMembers() < 1 then + if not IsInGroup() then libpredict:ParseChatMessage(UnitName("player"), msg, "HealComm") end pfHookHealCommSendAddonMessage(this, msg)