From f7eae55ebdca5d13637d84951cea205019992244 Mon Sep 17 00:00:00 2001 From: Andrew <47818697+Nyeriah@users.noreply.github.com> Date: Sat, 25 Jul 2026 16:02:34 -0300 Subject: [PATCH] fix(Scripts/TempleOfAhnQiraj): fix GCC/Clang build error in Skeram aggro yell (#26802) --- src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_skeram.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_skeram.cpp b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_skeram.cpp index 4661185b3..f47580b5e 100644 --- a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_skeram.cpp +++ b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_skeram.cpp @@ -16,6 +16,7 @@ */ #include "CreatureScript.h" +#include "Player.h" #include "ScriptedCreature.h" #include "SpellScript.h" #include "SpellScriptLoader.h" @@ -155,7 +156,7 @@ struct boss_skeram : public BossAI if (!me->IsSummon()) { // Resolve pets/guardians to their owner so gendered locales resolve $g against the puller - Player* puller = who->GetCharmerOrOwnerPlayerOrPlayerItself(); + Unit* puller = who->GetCharmerOrOwnerPlayerOrPlayerItself(); Talk(SAY_AGGRO, puller ? puller : who); } }