diff --git a/src/server/game/AI/CoreAI/UnitAI.cpp b/src/server/game/AI/CoreAI/UnitAI.cpp index 446bec316..baf48ef86 100644 --- a/src/server/game/AI/CoreAI/UnitAI.cpp +++ b/src/server/game/AI/CoreAI/UnitAI.cpp @@ -110,7 +110,7 @@ SpellCastResult UnitAI::DoAddAuraToAllHostilePlayers(uint32 spellid) { if (me->IsInCombat()) { - ThreatContainer::StorageType threatlist = me->getThreatMgr().getThreatList(); + ThreatContainer::StorageType threatlist = me->GetThreatMgr().getThreatList(); for (ThreatContainer::StorageType::const_iterator itr = threatlist.begin(); itr != threatlist.end(); ++itr) { if (Unit* unit = ObjectAccessor::GetUnit(*me, (*itr)->getUnitGuid())) @@ -133,7 +133,7 @@ SpellCastResult UnitAI::DoCastToAllHostilePlayers(uint32 spellid, bool triggered { if (me->IsInCombat()) { - ThreatContainer::StorageType threatlist = me->getThreatMgr().getThreatList(); + ThreatContainer::StorageType threatlist = me->GetThreatMgr().getThreatList(); for (ThreatContainer::StorageType::const_iterator itr = threatlist.begin(); itr != threatlist.end(); ++itr) { if (Unit* unit = ObjectAccessor::GetUnit(*me, (*itr)->getUnitGuid())) diff --git a/src/server/game/AI/CoreAI/UnitAI.h b/src/server/game/AI/CoreAI/UnitAI.h index d9531cc54..ae24f2dcb 100644 --- a/src/server/game/AI/CoreAI/UnitAI.h +++ b/src/server/game/AI/CoreAI/UnitAI.h @@ -216,7 +216,7 @@ public: template Unit* SelectTarget(SelectTargetMethod targetType, uint32 position, PREDICATE const& predicate) { - ThreatContainer::StorageType const& threatlist = me->getThreatMgr().getThreatList(); + ThreatContainer::StorageType const& threatlist = me->GetThreatMgr().getThreatList(); if (position >= threatlist.size()) return nullptr; @@ -278,7 +278,7 @@ public: template void SelectTargetList(std::list& targetList, PREDICATE const& predicate, uint32 maxTargets, SelectTargetMethod targetType) { - ThreatContainer::StorageType const& threatlist = me->getThreatMgr().getThreatList(); + ThreatContainer::StorageType const& threatlist = me->GetThreatMgr().getThreatList(); if (threatlist.empty()) return; diff --git a/src/server/game/AI/CreatureAI.cpp b/src/server/game/AI/CreatureAI.cpp index 957154d0b..91c2b1af3 100644 --- a/src/server/game/AI/CreatureAI.cpp +++ b/src/server/game/AI/CreatureAI.cpp @@ -283,7 +283,7 @@ bool CreatureAI::UpdateVictim() // xinef: if we have any victim, just return true else if (me->GetVictim() && me->GetExactDist(me->GetVictim()) < 30.0f) return true; - else if (me->getThreatMgr().isThreatListEmpty()) + else if (me->GetThreatMgr().isThreatListEmpty()) { EnterEvadeMode(); return false; diff --git a/src/server/game/AI/ScriptedAI/ScriptedCreature.cpp b/src/server/game/AI/ScriptedAI/ScriptedCreature.cpp index b212b1f4c..a0b29741b 100644 --- a/src/server/game/AI/ScriptedAI/ScriptedCreature.cpp +++ b/src/server/game/AI/ScriptedAI/ScriptedCreature.cpp @@ -370,27 +370,27 @@ SpellInfo const* ScriptedAI::SelectSpell(Unit* target, uint32 school, uint32 mec void ScriptedAI::DoResetThreat() { - if (!me->CanHaveThreatList() || me->getThreatMgr().isThreatListEmpty()) + if (!me->CanHaveThreatList() || me->GetThreatMgr().isThreatListEmpty()) { LOG_ERROR("entities.unit.ai", "DoResetThreat called for creature that either cannot have threat list or has empty threat list (me entry = {})", me->GetEntry()); return; } - me->getThreatMgr().ResetAllThreat(); + me->GetThreatMgr().ResetAllThreat(); } float ScriptedAI::DoGetThreat(Unit* unit) { if (!unit) return 0.0f; - return me->getThreatMgr().getThreat(unit); + return me->GetThreatMgr().getThreat(unit); } void ScriptedAI::DoModifyThreatPercent(Unit* unit, int32 pct) { if (!unit) return; - me->getThreatMgr().modifyThreatPercent(unit, pct); + me->GetThreatMgr().modifyThreatPercent(unit, pct); } void ScriptedAI::DoTeleportPlayer(Unit* unit, float x, float y, float z, float o) @@ -564,7 +564,7 @@ void BossAI::TeleportCheaters() float x, y, z; me->GetPosition(x, y, z); - ThreatContainer::StorageType threatList = me->getThreatMgr().getThreatList(); + ThreatContainer::StorageType threatList = me->GetThreatMgr().getThreatList(); for (ThreatContainer::StorageType::const_iterator itr = threatList.begin(); itr != threatList.end(); ++itr) if (Unit* target = (*itr)->getTarget()) if (target->GetTypeId() == TYPEID_PLAYER && !IsInBoundary(target)) diff --git a/src/server/game/AI/SmartScripts/SmartScript.cpp b/src/server/game/AI/SmartScripts/SmartScript.cpp index 412d99f95..fe49a3479 100644 --- a/src/server/game/AI/SmartScripts/SmartScript.cpp +++ b/src/server/game/AI/SmartScripts/SmartScript.cpp @@ -616,12 +616,12 @@ void SmartScript::ProcessAction(SmartScriptHolder& e, Unit* unit, uint32 var0, u if (!me) break; - ThreatContainer::StorageType threatList = me->getThreatMgr().getThreatList(); + ThreatContainer::StorageType threatList = me->GetThreatMgr().getThreatList(); for (ThreatContainer::StorageType::const_iterator i = threatList.begin(); i != threatList.end(); ++i) { if (Unit* target = ObjectAccessor::GetUnit(*me, (*i)->getUnitGuid())) { - me->getThreatMgr().modifyThreatPercent(target, e.action.threatPCT.threatINC ? (int32)e.action.threatPCT.threatINC : -(int32)e.action.threatPCT.threatDEC); + me->GetThreatMgr().modifyThreatPercent(target, e.action.threatPCT.threatINC ? (int32)e.action.threatPCT.threatINC : -(int32)e.action.threatPCT.threatDEC); LOG_DEBUG("sql.sql", "SmartScript::ProcessAction:: SMART_ACTION_THREAT_ALL_PCT: Creature {} modify threat for unit {}, value {}", me->GetGUID().ToString(), target->GetGUID().ToString(), e.action.threatPCT.threatINC ? (int32)e.action.threatPCT.threatINC : -(int32)e.action.threatPCT.threatDEC); } @@ -641,7 +641,7 @@ void SmartScript::ProcessAction(SmartScriptHolder& e, Unit* unit, uint32 var0, u { if (IsUnit(*itr)) { - me->getThreatMgr().modifyThreatPercent((*itr)->ToUnit(), e.action.threatPCT.threatINC ? (int32)e.action.threatPCT.threatINC : -(int32)e.action.threatPCT.threatDEC); + me->GetThreatMgr().modifyThreatPercent((*itr)->ToUnit(), e.action.threatPCT.threatINC ? (int32)e.action.threatPCT.threatINC : -(int32)e.action.threatPCT.threatDEC); LOG_DEBUG("sql.sql", "SmartScript::ProcessAction:: SMART_ACTION_THREAT_SINGLE_PCT: Creature {} modify threat for unit {}, value {}", me->GetGUID().ToString(), (*itr)->GetGUID().ToString(), e.action.threatPCT.threatINC ? (int32)e.action.threatPCT.threatINC : -(int32)e.action.threatPCT.threatDEC); } @@ -3878,7 +3878,7 @@ ObjectList* SmartScript::GetTargets(SmartScriptHolder const& e, Unit* invoker /* { if (me) { - ThreatContainer::StorageType threatList = me->getThreatMgr().getThreatList(); + ThreatContainer::StorageType threatList = me->GetThreatMgr().getThreatList(); for (ThreatContainer::StorageType::const_iterator i = threatList.begin(); i != threatList.end(); ++i) if (Unit* temp = ObjectAccessor::GetUnit(*me, (*i)->getUnitGuid())) // Xinef: added distance check diff --git a/src/server/game/Combat/UnitEvents.h b/src/server/game/Combat/UnitEvents.h index e8ced7263..1f106898f 100644 --- a/src/server/game/Combat/UnitEvents.h +++ b/src/server/game/Combat/UnitEvents.h @@ -112,7 +112,7 @@ public: void setThreatMgr(ThreatMgr* pThreatMgr) { iThreatMgr = pThreatMgr; } - [[nodiscard]] ThreatMgr* getThreatMgr() const { return iThreatMgr; } + [[nodiscard]] ThreatMgr* GetThreatMgr() const { return iThreatMgr; } }; //============================================================== diff --git a/src/server/game/Entities/Creature/Creature.cpp b/src/server/game/Entities/Creature/Creature.cpp index 81caf4e77..ca2da341d 100644 --- a/src/server/game/Entities/Creature/Creature.cpp +++ b/src/server/game/Entities/Creature/Creature.cpp @@ -207,8 +207,8 @@ bool TemporaryThreatModifierEvent::Execute(uint64 /*e_time*/, uint32 /*p_time*/) { if (m_owner.IsInCombatWith(victim)) { - m_owner.getThreatMgr().modifyThreatPercent(victim, -100); // Reset threat to zero. - m_owner.getThreatMgr().addThreat(victim, m_threatValue); // Set to the previous value it had, first before modification. + m_owner.GetThreatMgr().modifyThreatPercent(victim, -100); // Reset threat to zero. + m_owner.GetThreatMgr().addThreat(victim, m_threatValue); // Set to the previous value it had, first before modification. } } @@ -3548,11 +3548,11 @@ void Creature::ModifyThreatPercentTemp(Unit* victim, int32 percent, Milliseconds { if (victim) { - float currentThreat = getThreatMgr().getThreat(victim); + float currentThreat = GetThreatMgr().getThreat(victim); if (percent != 0.0f) { - getThreatMgr().modifyThreatPercent(victim, percent); + GetThreatMgr().modifyThreatPercent(victim, percent); } TemporaryThreatModifierEvent* pEvent = new TemporaryThreatModifierEvent(*this, victim->GetGUID(), currentThreat); diff --git a/src/server/game/Entities/Unit/Unit.cpp b/src/server/game/Entities/Unit/Unit.cpp index 5dc278919..790544196 100644 --- a/src/server/game/Entities/Unit/Unit.cpp +++ b/src/server/game/Entities/Unit/Unit.cpp @@ -422,7 +422,7 @@ void Unit::Update(uint32 p_time) _UpdateSpells( p_time ); - if (CanHaveThreatList() && getThreatMgr().isNeedUpdateToClient(p_time)) + if (CanHaveThreatList() && GetThreatMgr().isNeedUpdateToClient(p_time)) SendThreatListUpdate(); // update combat timer only for players and pets (only pets with PetAI) @@ -8915,7 +8915,7 @@ bool Unit::HandleProcTriggerSpell(Unit* victim, uint32 damage, AuraEffect* trigg return false; if (victim && victim->IsAlive()) - victim->getThreatMgr().modifyThreatPercent(this, -10); + victim->GetThreatMgr().modifyThreatPercent(this, -10); basepoints0 = int32(CountPctFromMaxHealth(triggerAmount)); trigger_spell_id = 31616; @@ -18569,8 +18569,8 @@ void Unit::SetPhaseMask(uint32 newPhaseMask, bool update) // modify threat lists for new phasemask if (GetTypeId() != TYPEID_PLAYER) { - ThreatContainer::StorageType threatList = getThreatMgr().getThreatList(); - ThreatContainer::StorageType offlineThreatList = getThreatMgr().getOfflineThreatList(); + ThreatContainer::StorageType threatList = GetThreatMgr().getThreatList(); + ThreatContainer::StorageType offlineThreatList = GetThreatMgr().getOfflineThreatList(); // merge expects sorted lists threatList.sort(); @@ -19521,15 +19521,15 @@ void Unit::UpdateHeight(float newZ) void Unit::SendThreatListUpdate() { - if (!getThreatMgr().isThreatListEmpty()) + if (!GetThreatMgr().isThreatListEmpty()) { - uint32 count = getThreatMgr().getThreatList().size(); + uint32 count = GetThreatMgr().getThreatList().size(); //LOG_DEBUG("entities.unit", "WORLD: Send SMSG_THREAT_UPDATE Message"); WorldPacket data(SMSG_THREAT_UPDATE, 8 + count * 8); data << GetPackGUID(); data << uint32(count); - ThreatContainer::StorageType const& tlist = getThreatMgr().getThreatList(); + ThreatContainer::StorageType const& tlist = GetThreatMgr().getThreatList(); for (ThreatContainer::StorageType::const_iterator itr = tlist.begin(); itr != tlist.end(); ++itr) { data << (*itr)->getUnitGuid().WriteAsPacked(); @@ -19541,16 +19541,16 @@ void Unit::SendThreatListUpdate() void Unit::SendChangeCurrentVictimOpcode(HostileReference* pHostileReference) { - if (!getThreatMgr().isThreatListEmpty()) + if (!GetThreatMgr().isThreatListEmpty()) { - uint32 count = getThreatMgr().getThreatList().size(); + uint32 count = GetThreatMgr().getThreatList().size(); LOG_DEBUG("entities.unit", "WORLD: Send SMSG_HIGHEST_THREAT_UPDATE Message"); WorldPacket data(SMSG_HIGHEST_THREAT_UPDATE, 8 + 8 + count * 8); data << GetPackGUID(); data << pHostileReference->getUnitGuid().WriteAsPacked(); data << uint32(count); - ThreatContainer::StorageType const& tlist = getThreatMgr().getThreatList(); + ThreatContainer::StorageType const& tlist = GetThreatMgr().getThreatList(); for (ThreatContainer::StorageType::const_iterator itr = tlist.begin(); itr != tlist.end(); ++itr) { data << (*itr)->getUnitGuid().WriteAsPacked(); diff --git a/src/server/game/Entities/Unit/Unit.h b/src/server/game/Entities/Unit/Unit.h index 08ad430eb..082950ffc 100644 --- a/src/server/game/Entities/Unit/Unit.h +++ b/src/server/game/Entities/Unit/Unit.h @@ -2108,7 +2108,7 @@ public: void DeleteThreatList(); void TauntApply(Unit* victim); void TauntFadeOut(Unit* taunter); - ThreatMgr& getThreatMgr() { return m_ThreatMgr; } + ThreatMgr& GetThreatMgr() { return m_ThreatMgr; } void addHatedBy(HostileReference* pHostileReference) { m_HostileRefMgr.insertFirst(pHostileReference); }; void removeHatedBy(HostileReference* /*pHostileReference*/) { /* nothing to do yet */ } HostileRefMgr& getHostileRefMgr() { return m_HostileRefMgr; } diff --git a/src/server/game/Spells/SpellEffects.cpp b/src/server/game/Spells/SpellEffects.cpp index 0150cf77a..aa16c4026 100644 --- a/src/server/game/Spells/SpellEffects.cpp +++ b/src/server/game/Spells/SpellEffects.cpp @@ -3290,17 +3290,17 @@ void Spell::EffectTaunt(SpellEffIndex /*effIndex*/) return; } - if (!unitTarget->getThreatMgr().getOnlineContainer().empty()) + if (!unitTarget->GetThreatMgr().getOnlineContainer().empty()) { // Also use this effect to set the taunter's threat to the taunted creature's highest value - float myThreat = unitTarget->getThreatMgr().getThreat(m_caster); - float topThreat = unitTarget->getThreatMgr().getOnlineContainer().getMostHated()->getThreat(); + float myThreat = unitTarget->GetThreatMgr().getThreat(m_caster); + float topThreat = unitTarget->GetThreatMgr().getOnlineContainer().getMostHated()->getThreat(); if (topThreat > myThreat) - unitTarget->getThreatMgr().doAddThreat(m_caster, topThreat - myThreat); + unitTarget->GetThreatMgr().doAddThreat(m_caster, topThreat - myThreat); //Set aggro victim to caster - if (HostileReference* forcedVictim = unitTarget->getThreatMgr().getOnlineContainer().getReferenceByTarget(m_caster)) - unitTarget->getThreatMgr().setCurrentVictim(forcedVictim); + if (HostileReference* forcedVictim = unitTarget->GetThreatMgr().getOnlineContainer().getReferenceByTarget(m_caster)) + unitTarget->GetThreatMgr().setCurrentVictim(forcedVictim); } if (unitTarget->ToCreature()->IsAIEnabled && !unitTarget->ToCreature()->HasReactState(REACT_PASSIVE)) @@ -5310,7 +5310,7 @@ void Spell::EffectModifyThreatPercent(SpellEffIndex /*effIndex*/) if (!unitTarget) return; - unitTarget->getThreatMgr().modifyThreatPercent(m_caster, damage); + unitTarget->GetThreatMgr().modifyThreatPercent(m_caster, damage); } void Spell::EffectTransmitted(SpellEffIndex effIndex) diff --git a/src/server/scripts/Commands/cs_debug.cpp b/src/server/scripts/Commands/cs_debug.cpp index 905bd6a2c..a5cf1b9fa 100644 --- a/src/server/scripts/Commands/cs_debug.cpp +++ b/src/server/scripts/Commands/cs_debug.cpp @@ -783,7 +783,7 @@ public: if (!target || target->IsTotem() || target->IsPet()) return false; - auto const& threatList = target->getThreatMgr().getThreatList(); + auto const& threatList = target->GetThreatMgr().getThreatList(); ThreatContainer::StorageType::const_iterator itr; uint32 count = 0; @@ -801,7 +801,7 @@ public: handler->PSendSysMessage(" %u. %s (%s) - threat %f", ++count, unit->GetName().c_str(), unit->GetGUID().ToString().c_str(), (*itr)->getThreat()); } - auto const& threatList2 = target->getThreatMgr().getOfflineThreatList(); + auto const& threatList2 = target->GetThreatMgr().getOfflineThreatList(); for (itr = threatList2.begin(); itr != threatList2.end(); ++itr) { Unit* unit = (*itr)->getTarget(); diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_drakkisath.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_drakkisath.cpp index a70e119f7..c81f6b395 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_drakkisath.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_drakkisath.cpp @@ -91,8 +91,8 @@ public: if (Unit* target = me->GetVictim()) { _conflagrateTarget = me->GetVictim()->GetGUID(); - _conflagrateThreat = me->getThreatMgr().getThreat(me->GetVictim()); - me->getThreatMgr().modifyThreatPercent(target, -100); + _conflagrateThreat = me->GetThreatMgr().getThreat(me->GetVictim()); + me->GetThreatMgr().modifyThreatPercent(target, -100); } events.ScheduleEvent(EVENT_CONFLAGRATION, urand(10000, 13000)); events.ScheduleEvent(EVENT_CHECK_CONFLAGRATION_TARGET, 10000); @@ -112,7 +112,7 @@ public: case EVENT_CHECK_CONFLAGRATION_TARGET: if (Unit* target = ObjectAccessor::GetUnit(*me, _conflagrateTarget)) { - me->getThreatMgr().addThreat(target, _conflagrateThreat); + me->GetThreatMgr().addThreat(target, _conflagrateThreat); } break; } diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_mor_grayhoof.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_mor_grayhoof.cpp index 8687387ab..94e04a926 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_mor_grayhoof.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_mor_grayhoof.cpp @@ -122,13 +122,13 @@ struct boss_mor_grayhoof : public BossAI // Sleep can target tank, we need to drop threat temporarily on the target. _sleepTargetGUID = target->GetGUID(); - _sleepTargetThreat = me->getThreatMgr().getThreat(target); - me->getThreatMgr().modifyThreatPercent(target, -100); + _sleepTargetThreat = me->GetThreatMgr().getThreat(target); + me->GetThreatMgr().modifyThreatPercent(target, -100); _scheduler.Schedule(10s, [this](TaskContext /*context*/) { if (Unit* sleepTarget = ObjectAccessor::GetUnit(*me, _sleepTargetGUID)) { - me->getThreatMgr().addThreat(sleepTarget, _sleepTargetThreat); + me->GetThreatMgr().addThreat(sleepTarget, _sleepTargetThreat); } }); } diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_nefarian.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_nefarian.cpp index bbe76efe5..f396a1b17 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_nefarian.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_nefarian.cpp @@ -674,7 +674,7 @@ struct boss_nefarian : public BossAI break; case EVENT_CLASSCALL: std::set classesPresent; - for (auto& ref : me->getThreatMgr().getThreatList()) + for (auto& ref : me->GetThreatMgr().getThreatList()) { if (ref->getTarget() && ref->getTarget()->GetTypeId() == TYPEID_PLAYER) { diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_majordomo_executus.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_majordomo_executus.cpp index 25ce1fd22..fd676fc5c 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_majordomo_executus.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_majordomo_executus.cpp @@ -597,7 +597,7 @@ public: { if (Creature* creatureCaster = caster->ToCreature()) { - creatureCaster->getThreatMgr().ResetAllThreat(); + creatureCaster->GetThreatMgr().ResetAllThreat(); } } } diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_ragnaros.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_ragnaros.cpp index 2e52b44a3..3b4be5ae5 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_ragnaros.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_ragnaros.cpp @@ -234,7 +234,7 @@ public: void EnterEvadeMode(EvadeReason why) override { - if (!me->getThreatMgr().getThreatList().empty()) + if (!me->GetThreatMgr().getThreatList().empty()) { if (!_processingMagmaBurst) { diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_shazzrah.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_shazzrah.cpp index 7dc4f823b..8121b75d1 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_shazzrah.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_shazzrah.cpp @@ -170,8 +170,8 @@ public: if (Creature* creatureCaster = caster->ToCreature()) { - creatureCaster->getThreatMgr().ResetAllThreat(); - creatureCaster->getThreatMgr().addThreat(target, 1); + creatureCaster->GetThreatMgr().ResetAllThreat(); + creatureCaster->GetThreatMgr().addThreat(target, 1); creatureCaster->AI()->AttackStart(target); // Attack the target which caster will teleport to. } } diff --git a/src/server/scripts/EasternKingdoms/Karazhan/boss_netherspite.cpp b/src/server/scripts/EasternKingdoms/Karazhan/boss_netherspite.cpp index 40bcc1da3..454009dd0 100644 --- a/src/server/scripts/EasternKingdoms/Karazhan/boss_netherspite.cpp +++ b/src/server/scripts/EasternKingdoms/Karazhan/boss_netherspite.cpp @@ -212,7 +212,7 @@ public: } // aggro target if Red Beam if (j == RED_PORTAL && me->GetVictim() != target && target->GetTypeId() == TYPEID_PLAYER) - me->getThreatMgr().addThreat(target, 100000.0f + DoGetThreat(me->GetVictim())); + me->GetThreatMgr().addThreat(target, 100000.0f + DoGetThreat(me->GetVictim())); } } diff --git a/src/server/scripts/EasternKingdoms/Karazhan/boss_prince_malchezaar.cpp b/src/server/scripts/EasternKingdoms/Karazhan/boss_prince_malchezaar.cpp index 5d257c1ff..702b70481 100644 --- a/src/server/scripts/EasternKingdoms/Karazhan/boss_prince_malchezaar.cpp +++ b/src/server/scripts/EasternKingdoms/Karazhan/boss_prince_malchezaar.cpp @@ -251,7 +251,7 @@ public: if (!info) return; - ThreatContainer::StorageType const& t_list = me->getThreatMgr().getThreatList(); + ThreatContainer::StorageType const& t_list = me->GetThreatMgr().getThreatList(); std::vector targets; if (t_list.empty()) diff --git a/src/server/scripts/EasternKingdoms/Karazhan/boss_shade_of_aran.cpp b/src/server/scripts/EasternKingdoms/Karazhan/boss_shade_of_aran.cpp index 3a2486971..861626e40 100644 --- a/src/server/scripts/EasternKingdoms/Karazhan/boss_shade_of_aran.cpp +++ b/src/server/scripts/EasternKingdoms/Karazhan/boss_shade_of_aran.cpp @@ -162,7 +162,7 @@ public: void FlameWreathEffect() { std::vector targets; - ThreatContainer::StorageType const& t_list = me->getThreatMgr().getThreatList(); + ThreatContainer::StorageType const& t_list = me->GetThreatMgr().getThreatList(); if (t_list.empty()) return; diff --git a/src/server/scripts/EasternKingdoms/Karazhan/instance_karazhan.cpp b/src/server/scripts/EasternKingdoms/Karazhan/instance_karazhan.cpp index d6428aae1..fc23bdba4 100644 --- a/src/server/scripts/EasternKingdoms/Karazhan/instance_karazhan.cpp +++ b/src/server/scripts/EasternKingdoms/Karazhan/instance_karazhan.cpp @@ -393,7 +393,7 @@ public: void HandleDummy(SpellEffIndex effIndex) { PreventHitDefaultEffect(effIndex); - GetCaster()->getThreatMgr().ResetAllThreat(); + GetCaster()->GetThreatMgr().ResetAllThreat(); if (Unit* target = GetHitUnit()) GetCaster()->CastSpell(target, SPELL_BLINK, true); } diff --git a/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_priestess_delrissa.cpp b/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_priestess_delrissa.cpp index 0e1129947..32b16bb08 100644 --- a/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_priestess_delrissa.cpp +++ b/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_priestess_delrissa.cpp @@ -299,15 +299,15 @@ struct boss_priestess_lackey_commonAI : public ScriptedAI void RecalculateThreat() { - ThreatContainer::StorageType const& tList = me->getThreatMgr().getThreatList(); + ThreatContainer::StorageType const& tList = me->GetThreatMgr().getThreatList(); for( ThreatContainer::StorageType::const_iterator itr = tList.begin(); itr != tList.end(); ++itr ) { Unit* pUnit = ObjectAccessor::GetUnit(*me, (*itr)->getUnitGuid()); - if( pUnit && pUnit->GetTypeId() == TYPEID_PLAYER && me->getThreatMgr().getThreat(pUnit) ) + if( pUnit && pUnit->GetTypeId() == TYPEID_PLAYER && me->GetThreatMgr().getThreat(pUnit) ) { float threatMod = GetThreatMod(me->GetDistance2d(pUnit), (float)pUnit->GetArmor(), pUnit->GetHealth(), pUnit->GetMaxHealth(), pUnit); - me->getThreatMgr().modifyThreatPercent(pUnit, -100); - if (HostileReference* ref = me->getThreatMgr().getOnlineContainer().getReferenceByTarget(pUnit)) + me->GetThreatMgr().modifyThreatPercent(pUnit, -100); + if (HostileReference* ref = me->GetThreatMgr().getOnlineContainer().getReferenceByTarget(pUnit)) ref->addThreat(10000000.0f * threatMod); } } @@ -741,7 +741,7 @@ public: case EVENT_SPELL_BLINK: { bool InMeleeRange = false; - ThreatContainer::StorageType const& t_list = me->getThreatMgr().getThreatList(); + ThreatContainer::StorageType const& t_list = me->GetThreatMgr().getThreatList(); for (ThreatContainer::StorageType::const_iterator itr = t_list.begin(); itr != t_list.end(); ++itr) if (Unit* target = ObjectAccessor::GetUnit(*me, (*itr)->getUnitGuid())) if (target->IsWithinMeleeRange(me)) diff --git a/src/server/scripts/EasternKingdoms/Scholomance/instance_scholomance.cpp b/src/server/scripts/EasternKingdoms/Scholomance/instance_scholomance.cpp index c738fb08d..3a7cbe24b 100644 --- a/src/server/scripts/EasternKingdoms/Scholomance/instance_scholomance.cpp +++ b/src/server/scripts/EasternKingdoms/Scholomance/instance_scholomance.cpp @@ -368,7 +368,7 @@ public: Unit* SelectUnitCasting() { - ThreatContainer::StorageType threatlist = me->getThreatMgr().getThreatList(); + ThreatContainer::StorageType threatlist = me->GetThreatMgr().getThreatList(); for (ThreatContainer::StorageType::const_iterator itr = threatlist.begin(); itr != threatlist.end(); ++itr) { if (Unit* unit = ObjectAccessor::GetUnit(*me, (*itr)->getUnitGuid())) diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_archimonde.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_archimonde.cpp index 2d2fc8fcc..c786f683b 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_archimonde.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_archimonde.cpp @@ -325,7 +325,7 @@ public: return; // Now lets get archimode threat list - ThreatContainer::StorageType const& t_list = me->getThreatMgr().getThreatList(); + ThreatContainer::StorageType const& t_list = me->GetThreatMgr().getThreatList(); if (t_list.empty()) return; @@ -435,7 +435,7 @@ public: if (victim && me->IsWithinMeleeRange(victim)) return false; - ThreatContainer::StorageType const& threatlist = me->getThreatMgr().getThreatList(); + ThreatContainer::StorageType const& threatlist = me->GetThreatMgr().getThreatList(); if (threatlist.empty()) return false; diff --git a/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/boss_moam.cpp b/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/boss_moam.cpp index 92d0573ea..f38bfd8e0 100644 --- a/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/boss_moam.cpp +++ b/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/boss_moam.cpp @@ -142,7 +142,7 @@ public: { std::list targetList; { - const std::list& threatlist = me->getThreatMgr().getThreatList(); + const std::list& threatlist = me->GetThreatMgr().getThreatList(); for (std::list::const_iterator itr = threatlist.begin(); itr != threatlist.end(); ++itr) if ((*itr)->getTarget()->GetTypeId() == TYPEID_PLAYER && (*itr)->getTarget()->getPowerType() == POWER_MANA) targetList.push_back((*itr)->getTarget()); diff --git a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_bug_trio.cpp b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_bug_trio.cpp index ff51e0f48..cf765b460 100644 --- a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_bug_trio.cpp +++ b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_bug_trio.cpp @@ -421,7 +421,7 @@ class spell_vem_knockback : public SpellScript { if (Creature* cCaster = GetCaster()->ToCreature()) { - cCaster->getThreatMgr().modifyThreatPercent(target, -80); + cCaster->GetThreatMgr().modifyThreatPercent(target, -80); } } } diff --git a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_cthun.cpp b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_cthun.cpp index f03902703..0380ded3e 100644 --- a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_cthun.cpp +++ b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_cthun.cpp @@ -659,7 +659,7 @@ public: //Place all units in threat list on outside of stomach Stomach_Map.clear(); - for (std::list::const_iterator i = me->getThreatMgr().getThreatList().begin(); i != me->getThreatMgr().getThreatList().end(); ++i) + for (std::list::const_iterator i = me->GetThreatMgr().getThreatList().begin(); i != me->GetThreatMgr().getThreatList().end(); ++i) Stomach_Map[(*i)->getUnitGuid()] = false; //Outside stomach //Spawn 2 flesh tentacles diff --git a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_twinemperors.cpp b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_twinemperors.cpp index 5ff71e9ba..841280dcf 100644 --- a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_twinemperors.cpp +++ b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_twinemperors.cpp @@ -415,7 +415,7 @@ public: void CastSpellOnBug(Creature* target) override { target->SetFaction(FACTION_MONSTER); - target->AI()->AttackStart(me->getThreatMgr().getHostileTarget()); + target->AI()->AttackStart(me->GetThreatMgr().getHostileTarget()); target->AddAura(SPELL_MUTATE_BUG, target); target->SetFullHealth(); } diff --git a/src/server/scripts/Kalimdor/boss_azuregos.cpp b/src/server/scripts/Kalimdor/boss_azuregos.cpp index c9b0cf5c0..cc8423194 100644 --- a/src/server/scripts/Kalimdor/boss_azuregos.cpp +++ b/src/server/scripts/Kalimdor/boss_azuregos.cpp @@ -191,7 +191,7 @@ class spell_arcane_vacuum : public SpellScript Unit* hitUnit = GetHitUnit(); if (caster && hitUnit && hitUnit->ToPlayer()) { - caster->getThreatMgr().modifyThreatPercent(hitUnit, -100); + caster->GetThreatMgr().modifyThreatPercent(hitUnit, -100); caster->CastSpell(hitUnit, SPELL_ARCANE_VACUUM_TP, true); } } diff --git a/src/server/scripts/Northrend/AzjolNerub/ahnkahet/boss_prince_taldaram.cpp b/src/server/scripts/Northrend/AzjolNerub/ahnkahet/boss_prince_taldaram.cpp index 345b80963..787b43c1b 100644 --- a/src/server/scripts/Northrend/AzjolNerub/ahnkahet/boss_prince_taldaram.cpp +++ b/src/server/scripts/Northrend/AzjolNerub/ahnkahet/boss_prince_taldaram.cpp @@ -409,7 +409,7 @@ struct boss_taldaram : public BossAI { //Count alive players uint8 count = 0; - std::list const t_list = me->getThreatMgr().getThreatList(); + std::list const t_list = me->GetThreatMgr().getThreatList(); if (!t_list.empty()) { for (HostileReference const* reference : t_list) diff --git a/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_halion.cpp b/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_halion.cpp index af3818a2e..55723e80e 100644 --- a/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_halion.cpp +++ b/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_halion.cpp @@ -1158,7 +1158,7 @@ public: GetTarget()->SetUnitFlag(UNIT_FLAG_NOT_SELECTABLE); GetTarget()->ToCreature()->SetReactState(REACT_DEFENSIVE); GetTarget()->GetMotionMaster()->Clear(); - GetTarget()->getThreatMgr().clearReferences(); + GetTarget()->GetThreatMgr().clearReferences(); GetTarget()->RemoveAllAttackers(); GetTarget()->AttackStop(); } @@ -1168,7 +1168,7 @@ public: GetTarget()->RemoveUnitFlag(UNIT_FLAG_NOT_SELECTABLE); GetTarget()->ToCreature()->SetReactState(REACT_DEFENSIVE); GetTarget()->GetMotionMaster()->Clear(); - GetTarget()->getThreatMgr().clearReferences(); + GetTarget()->GetThreatMgr().clearReferences(); GetTarget()->RemoveAllAttackers(); GetTarget()->AttackStop(); } diff --git a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_argent_challenge.cpp b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_argent_challenge.cpp index 25152b05b..2faee8558 100644 --- a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_argent_challenge.cpp +++ b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_argent_challenge.cpp @@ -155,7 +155,7 @@ public: me->SetFaction(FACTION_FRIENDLY); events.Reset(); Talk(TEXT_EADRIC_DEATH); - me->getThreatMgr().clearReferences(); + me->GetThreatMgr().clearReferences(); me->SetRegeneratingHealth(false); _EnterEvadeMode(); me->SetUnitFlag(UNIT_FLAG_NON_ATTACKABLE | UNIT_FLAG_IMMUNE_TO_PC | UNIT_FLAG_IMMUNE_TO_NPC); @@ -302,7 +302,7 @@ public: me->SetFaction(FACTION_FRIENDLY); events.Reset(); Talk(TEXT_PALETRESS_DEATH); - me->getThreatMgr().clearReferences(); + me->GetThreatMgr().clearReferences(); me->SetRegeneratingHealth(false); _EnterEvadeMode(); me->SetUnitFlag(UNIT_FLAG_NON_ATTACKABLE | UNIT_FLAG_IMMUNE_TO_PC | UNIT_FLAG_IMMUNE_TO_NPC); diff --git a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_grand_champions.cpp b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_grand_champions.cpp index 751097de4..ff5d0f0ed 100644 --- a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_grand_champions.cpp +++ b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_grand_champions.cpp @@ -296,7 +296,7 @@ public: uint8 rnd = LIST.size() > 1 ? urand(0, LIST.size() - 1) : 0; if( Unit* target = ObjectAccessor::GetUnit(*me, LIST.at(rnd)) ) { - me->getThreatMgr().ResetAllThreat(); + me->GetThreatMgr().ResetAllThreat(); me->AddThreat(target, 10000.0f); AttackStart(target); me->CastSpell(target, SPELL_MINIONS_CHARGE, false); @@ -749,7 +749,7 @@ public: uint8 rnd = LIST.size() > 1 ? urand(0, LIST.size() - 1) : 0; if( Unit* target = ObjectAccessor::GetUnit(*me, LIST.at(rnd)) ) { - me->getThreatMgr().ResetAllThreat(); + me->GetThreatMgr().ResetAllThreat(); me->AddThreat(target, 10000.0f); AttackStart(target); me->CastSpell(target, SPELL_MINIONS_CHARGE, false); diff --git a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_faction_champions.cpp b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_faction_champions.cpp index 6462b2ee2..3ccc2a9c4 100644 --- a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_faction_champions.cpp +++ b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_faction_champions.cpp @@ -102,16 +102,16 @@ struct boss_faction_championsAI : public ScriptedAI void RecalculateThreat() { - ThreatContainer::StorageType const& tList = me->getThreatMgr().getThreatList(); + ThreatContainer::StorageType const& tList = me->GetThreatMgr().getThreatList(); for( ThreatContainer::StorageType::const_iterator itr = tList.begin(); itr != tList.end(); ++itr ) { Unit* pUnit = ObjectAccessor::GetUnit(*me, (*itr)->getUnitGuid()); - if( pUnit && pUnit->GetTypeId() == TYPEID_PLAYER && me->getThreatMgr().getThreat(pUnit) ) + if( pUnit && pUnit->GetTypeId() == TYPEID_PLAYER && me->GetThreatMgr().getThreat(pUnit) ) { float threatMod = GetThreatMod(me->GetDistance2d(pUnit), (float)pUnit->GetArmor(), pUnit->GetHealth(), pUnit->GetMaxHealth(), pUnit); - me->getThreatMgr().modifyThreatPercent(pUnit, -100); + me->GetThreatMgr().modifyThreatPercent(pUnit, -100); //me->getThreatMgr().doAddThreat(pUnit, 10000000.0f * threatMod); - if (HostileReference* ref = me->getThreatMgr().getOnlineContainer().getReferenceByTarget(pUnit)) + if (HostileReference* ref = me->GetThreatMgr().getOnlineContainer().getReferenceByTarget(pUnit)) ref->addThreat(10000000.0f * threatMod); } } @@ -177,7 +177,7 @@ struct boss_faction_championsAI : public ScriptedAI uint32 EnemiesInRange(float distance) { - ThreatContainer::StorageType const& tList = me->getThreatMgr().getThreatList(); + ThreatContainer::StorageType const& tList = me->GetThreatMgr().getThreatList(); uint32 count = 0; Unit* target; for( ThreatContainer::StorageType::const_iterator iter = tList.begin(); iter != tList.end(); ++iter ) @@ -191,7 +191,7 @@ struct boss_faction_championsAI : public ScriptedAI Unit* SelectEnemyCaster(bool casting, float range) { - ThreatContainer::StorageType const& tList = me->getThreatMgr().getThreatList(); + ThreatContainer::StorageType const& tList = me->GetThreatMgr().getThreatList(); Unit* target; for( ThreatContainer::StorageType::const_iterator iter = tList.begin(); iter != tList.end(); ++iter ) { diff --git a/src/server/scripts/Northrend/DraktharonKeep/boss_tharon_ja.cpp b/src/server/scripts/Northrend/DraktharonKeep/boss_tharon_ja.cpp index 815ee0a33..11a635bad 100644 --- a/src/server/scripts/Northrend/DraktharonKeep/boss_tharon_ja.cpp +++ b/src/server/scripts/Northrend/DraktharonKeep/boss_tharon_ja.cpp @@ -161,7 +161,7 @@ public: if (me->HealthBelowPct(50)) { Talk(SAY_FLESH); - me->getThreatMgr().ResetAllThreat(); + me->GetThreatMgr().ResetAllThreat(); me->CastSpell((Unit*)nullptr, SPELL_TURN_FLESH, false); events.Reset(); @@ -257,7 +257,7 @@ public: void HandleEffectRemove(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/) { PreventDefaultAction(); - GetUnitOwner()->getThreatMgr().ResetAllThreat(); + GetUnitOwner()->GetThreatMgr().ResetAllThreat(); GetUnitOwner()->GetMotionMaster()->Clear(); GetUnitOwner()->CastSpell((Unit*)nullptr, SPELL_TURN_BONES, false); GetUnitOwner()->GetAI()->DoAction(ACTION_TURN_BONES); diff --git a/src/server/scripts/Northrend/Gundrak/boss_eck.cpp b/src/server/scripts/Northrend/Gundrak/boss_eck.cpp index 772890f19..c6ddd9b58 100644 --- a/src/server/scripts/Northrend/Gundrak/boss_eck.cpp +++ b/src/server/scripts/Northrend/Gundrak/boss_eck.cpp @@ -125,7 +125,7 @@ public: case EVENT_ECK_SPRING: if (Unit* target = SelectTarget(SelectTargetMethod::Random, 1, 30.0f, true)) { - me->getThreatMgr().ResetAllThreat(); + me->GetThreatMgr().ResetAllThreat(); me->AddThreat(target, 500.0f); me->CastSpell(target, SPELL_ECK_SPRING, false); } diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_blood_queen_lana_thel.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_blood_queen_lana_thel.cpp index c1582d602..f7bdd21ed 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_blood_queen_lana_thel.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_blood_queen_lana_thel.cpp @@ -335,7 +335,7 @@ public: if (Player* p = itr->GetSource()) if (p->IsAlive() && p != me->GetVictim() && p->GetGUID() != _offtankGUID && !p->IsGameMaster() && p->GetDistance(me) < 70.0f) { - float th = me->getThreatMgr().getThreatWithoutTemp(p); + float th = me->GetThreatMgr().getThreatWithoutTemp(p); if (!target || th > maxThreat) { target = p; diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_lady_deathwhisper.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_lady_deathwhisper.cpp index 33c5e54c0..8adef8955 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_lady_deathwhisper.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_lady_deathwhisper.cpp @@ -299,7 +299,7 @@ public: if (events.GetPhaseMask() & PHASE_ONE_MASK && damage >= me->GetPower(POWER_MANA)) { // reset threat - ThreatContainer::StorageType const& threatlist = me->getThreatMgr().getThreatList(); + ThreatContainer::StorageType const& threatlist = me->GetThreatMgr().getThreatList(); for (ThreatContainer::StorageType::const_iterator itr = threatlist.begin(); itr != threatlist.end(); ++itr) { Unit* unit = ObjectAccessor::GetUnit((*me), (*itr)->getUnitGuid()); @@ -930,7 +930,7 @@ public: ScriptedAI::AttackStart(who); if (!targetGUID) { - me->getThreatMgr().ResetAllThreat(); + me->GetThreatMgr().ResetAllThreat(); me->AddThreat(who, 1000000.0f); targetGUID = who->GetGUID(); } diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_the_lich_king.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_the_lich_king.cpp index c31a35d0f..ef952ecbb 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_the_lich_king.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_the_lich_king.cpp @@ -499,7 +499,7 @@ public: bool Execute(uint64 /*time*/, uint32 /*diff*/) override { _owner->SetReactState(REACT_AGGRESSIVE); - if (!_owner->getThreatMgr().isThreatListEmpty()) + if (!_owner->GetThreatMgr().isThreatListEmpty()) if (Unit* target = _owner->SelectVictim()) _owner->AI()->AttackStart(target); if (!_owner->GetVictim()) @@ -2378,7 +2378,7 @@ public: { me->SetControlled(false, UNIT_STATE_ROOT); - if (!me->getThreatMgr().isThreatListEmpty()) + if (!me->GetThreatMgr().isThreatListEmpty()) if (Unit* target = me->SelectVictim()) AttackStart(target); if (!me->GetVictim()) diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_valithria_dreamwalker.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_valithria_dreamwalker.cpp index d1bac1494..98d5adf71 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_valithria_dreamwalker.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_valithria_dreamwalker.cpp @@ -592,7 +592,7 @@ public: { checkTimer = 3000; me->SetInCombatWithZone(); - ThreatContainer::StorageType const& threatList = me->getThreatMgr().getThreatList(); + ThreatContainer::StorageType const& threatList = me->GetThreatMgr().getThreatList(); if (!threatList.empty()) for (ThreatContainer::StorageType::const_iterator itr = threatList.begin(); itr != threatList.end(); ++itr) if (Unit* target = (*itr)->getTarget()) diff --git a/src/server/scripts/Northrend/IcecrownCitadel/icecrown_citadel.cpp b/src/server/scripts/Northrend/IcecrownCitadel/icecrown_citadel.cpp index e68025ec0..12d723574 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/icecrown_citadel.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/icecrown_citadel.cpp @@ -1773,15 +1773,15 @@ public: Position myPos = me->GetPosition(); me->NearTeleportTo(c->GetPositionX(), c->GetPositionY(), c->GetPositionZ(), c->GetOrientation()); c->NearTeleportTo(myPos.GetPositionX(), myPos.GetPositionY(), myPos.GetPositionZ(), myPos.GetOrientation()); - const ThreatContainer::StorageType me_tl = me->getThreatMgr().getThreatList(); - const ThreatContainer::StorageType target_tl = c->getThreatMgr().getThreatList(); + const ThreatContainer::StorageType me_tl = me->GetThreatMgr().getThreatList(); + const ThreatContainer::StorageType target_tl = c->GetThreatMgr().getThreatList(); DoResetThreat(); for (ThreatContainer::StorageType::const_iterator iter = target_tl.begin(); iter != target_tl.end(); ++iter) - me->getThreatMgr().addThreat((*iter)->getTarget(), (*iter)->getThreat()); + me->GetThreatMgr().addThreat((*iter)->getTarget(), (*iter)->getThreat()); - c->getThreatMgr().ResetAllThreat(); + c->GetThreatMgr().ResetAllThreat(); for (ThreatContainer::StorageType::const_iterator iter = me_tl.begin(); iter != me_tl.end(); ++iter) - c->getThreatMgr().addThreat((*iter)->getTarget(), (*iter)->getThreat()); + c->GetThreatMgr().addThreat((*iter)->getTarget(), (*iter)->getThreat()); } } diff --git a/src/server/scripts/Northrend/Naxxramas/boss_gothik.cpp b/src/server/scripts/Northrend/Naxxramas/boss_gothik.cpp index 420016287..545461dab 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_gothik.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_gothik.cpp @@ -452,10 +452,10 @@ public: { me->CastSpell(me, SPELL_TELEPORT_LIVE, false); } - me->getThreatMgr().resetAggro(NotOnSameSide(me)); + me->GetThreatMgr().resetAggro(NotOnSameSide(me)); if (Unit* pTarget = SelectTarget(SelectTargetMethod::MaxDistance, 0)) { - me->getThreatMgr().addThreat(pTarget, 100.0f); + me->GetThreatMgr().addThreat(pTarget, 100.0f); AttackStart(pTarget); } events.RepeatEvent(20000); diff --git a/src/server/scripts/Northrend/Naxxramas/boss_kelthuzad.cpp b/src/server/scripts/Northrend/Naxxramas/boss_kelthuzad.cpp index 2a73666e6..92d5ebff2 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_kelthuzad.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_kelthuzad.cpp @@ -438,7 +438,7 @@ public: case EVENT_DETONATE_MANA: { std::vector unitList; - ThreatContainer::StorageType const& threatList = me->getThreatMgr().getThreatList(); + ThreatContainer::StorageType const& threatList = me->GetThreatMgr().getThreatList(); for (auto itr : threatList) { if (itr->getTarget()->GetTypeId() == TYPEID_PLAYER diff --git a/src/server/scripts/Northrend/Naxxramas/boss_patchwerk.cpp b/src/server/scripts/Northrend/Naxxramas/boss_patchwerk.cpp index c9d2fce99..275569233 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_patchwerk.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_patchwerk.cpp @@ -128,8 +128,8 @@ public: std::list meleeRangeTargets; Unit* finalTarget = nullptr; uint8 counter = 0; - auto i = me->getThreatMgr().getThreatList().begin(); - for (; i != me->getThreatMgr().getThreatList().end(); ++i, ++counter) + auto i = me->GetThreatMgr().getThreatList().begin(); + for (; i != me->GetThreatMgr().getThreatList().end(); ++i, ++counter) { // Gather all units with melee range Unit* target = (*i)->getTarget(); diff --git a/src/server/scripts/Northrend/Naxxramas/boss_sapphiron.cpp b/src/server/scripts/Northrend/Naxxramas/boss_sapphiron.cpp index 41577d818..9d5940163 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_sapphiron.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_sapphiron.cpp @@ -321,8 +321,8 @@ public: } std::vector targets; - auto i = me->getThreatMgr().getThreatList().begin(); - for (; i != me->getThreatMgr().getThreatList().end(); ++i) + auto i = me->GetThreatMgr().getThreatList().begin(); + for (; i != me->GetThreatMgr().getThreatList().end(); ++i) { if ((*i)->getTarget()->GetTypeId() == TYPEID_PLAYER) { diff --git a/src/server/scripts/Northrend/Naxxramas/boss_thaddius.cpp b/src/server/scripts/Northrend/Naxxramas/boss_thaddius.cpp index a47c18774..678c2f69c 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_thaddius.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_thaddius.cpp @@ -553,17 +553,17 @@ public: if (!feugen->IsAlive() || !feugen->GetVictim() || !me->GetVictim()) return; - float threatFeugen = feugen->getThreatMgr().getThreat(feugen->GetVictim()); - float threatStalagg = me->getThreatMgr().getThreat(me->GetVictim()); + float threatFeugen = feugen->GetThreatMgr().getThreat(feugen->GetVictim()); + float threatStalagg = me->GetThreatMgr().getThreat(me->GetVictim()); Unit* tankFeugen = feugen->GetVictim(); Unit* tankStalagg = me->GetVictim(); - feugen->getThreatMgr().modifyThreatPercent(tankFeugen, -100); + feugen->GetThreatMgr().modifyThreatPercent(tankFeugen, -100); feugen->AddThreat(tankStalagg, threatFeugen); feugen->CastSpell(tankStalagg, SPELL_MAGNETIC_PULL, true); feugen->AI()->DoAction(ACTION_MAGNETIC_PULL); - me->getThreatMgr().modifyThreatPercent(tankStalagg, -100); + me->GetThreatMgr().modifyThreatPercent(tankStalagg, -100); me->AddThreat(tankFeugen, threatStalagg); me->CastSpell(tankFeugen, SPELL_MAGNETIC_PULL, true); DoAction(ACTION_MAGNETIC_PULL); diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_flame_leviathan.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_flame_leviathan.cpp index 48295e0c4..506e84d8c 100644 --- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_flame_leviathan.cpp +++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_flame_leviathan.cpp @@ -1674,7 +1674,7 @@ public: if (!target || !caster) return; - caster->getThreatMgr().ResetAllThreat(); + caster->GetThreatMgr().ResetAllThreat(); caster->GetAI()->AttackStart(target); // Chase target caster->AddThreat(target, 10000000.0f); } diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_ignis.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_ignis.cpp index 65c4f8987..2e6934011 100644 --- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_ignis.cpp +++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_ignis.cpp @@ -138,7 +138,7 @@ public: heat->ModStackAmount(-1); } me->CastSpell(me, SPELL_MOLTEN, true); - me->getThreatMgr().ResetAllThreat(); + me->GetThreatMgr().ResetAllThreat(); } } } diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_kologarn.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_kologarn.cpp index 814fd2b13..fd4456b7c 100644 --- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_kologarn.cpp +++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_kologarn.cpp @@ -670,7 +670,7 @@ public: bool operator() (WorldObject* target) const { - if (target == _victim && _me->getThreatMgr().getThreatList().size() > 1) + if (target == _victim && _me->GetThreatMgr().getThreatList().size() > 1) return true; if (target->GetTypeId() != TYPEID_PLAYER) diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_thorim.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_thorim.cpp index 3785a684f..16bc0d23b 100644 --- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_thorim.cpp +++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_thorim.cpp @@ -1158,7 +1158,7 @@ public: } } _playerAttack = true; - me->getThreatMgr().ResetAllThreat(); + me->GetThreatMgr().ResetAllThreat(); me->CallForHelp(40.0f); AttackStart(who); } diff --git a/src/server/scripts/Northrend/VaultOfArchavon/boss_toravon.cpp b/src/server/scripts/Northrend/VaultOfArchavon/boss_toravon.cpp index 4136d491b..0b76b1631 100644 --- a/src/server/scripts/Northrend/VaultOfArchavon/boss_toravon.cpp +++ b/src/server/scripts/Northrend/VaultOfArchavon/boss_toravon.cpp @@ -191,7 +191,7 @@ public: if (switchTimer >= 10000) { switchTimer = 0; - me->getThreatMgr().ResetAllThreat(); + me->GetThreatMgr().ResetAllThreat(); if (Player* player = SelectTargetFromPlayerList(100.0f)) me->AddThreat(player, 100000.0f); } diff --git a/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_blackheart_the_inciter.cpp b/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_blackheart_the_inciter.cpp index 26d7599ba..d23c7ab42 100644 --- a/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_blackheart_the_inciter.cpp +++ b/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_blackheart_the_inciter.cpp @@ -116,7 +116,7 @@ public: { me->CastSpell(me, SPELL_INCITE_CHAOS, false); - std::list t_list = me->getThreatMgr().getThreatList(); + std::list t_list = me->GetThreatMgr().getThreatList(); for (std::list::const_iterator itr = t_list.begin(); itr != t_list.end(); ++itr) { Unit* target = ObjectAccessor::GetUnit(*me, (*itr)->getUnitGuid()); diff --git a/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_murmur.cpp b/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_murmur.cpp index 36c43c957..bb3686d76 100644 --- a/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_murmur.cpp +++ b/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_murmur.cpp @@ -150,7 +150,7 @@ public: if (!me->IsWithinMeleeRange(me->GetVictim())) { - ThreatContainer::StorageType threatlist = me->getThreatMgr().getThreatList(); + ThreatContainer::StorageType threatlist = me->GetThreatMgr().getThreatList(); for (ThreatContainer::StorageType::const_iterator i = threatlist.begin(); i != threatlist.end(); ++i) if (Unit* target = ObjectAccessor::GetUnit(*me, (*i)->getUnitGuid())) if (target->IsAlive() && me->IsWithinMeleeRange(target)) diff --git a/src/server/scripts/Outland/BlackTemple/boss_bloodboil.cpp b/src/server/scripts/Outland/BlackTemple/boss_bloodboil.cpp index 6ac1c1931..d8955c7d8 100644 --- a/src/server/scripts/Outland/BlackTemple/boss_bloodboil.cpp +++ b/src/server/scripts/Outland/BlackTemple/boss_bloodboil.cpp @@ -245,7 +245,7 @@ public: { PreventHitEffect(effIndex); if (Unit* target = GetHitUnit()) - GetCaster()->getThreatMgr().modifyThreatPercent(target, -20); + GetCaster()->GetThreatMgr().modifyThreatPercent(target, -20); } void Register() override diff --git a/src/server/scripts/Outland/BlackTemple/boss_illidan.cpp b/src/server/scripts/Outland/BlackTemple/boss_illidan.cpp index 1bd8e4176..a5cf450a4 100644 --- a/src/server/scripts/Outland/BlackTemple/boss_illidan.cpp +++ b/src/server/scripts/Outland/BlackTemple/boss_illidan.cpp @@ -618,7 +618,7 @@ public: me->SetDisableGravity(false); break; case EVENT_START_PHASE_3_LAND: - me->getThreatMgr().ResetAllThreat(); + me->GetThreatMgr().ResetAllThreat(); me->RemoveUnitFlag(UNIT_FLAG_NOT_SELECTABLE); me->SetTarget(me->GetVictim()->GetGUID()); AttackStart(me->GetVictim()); @@ -631,7 +631,7 @@ public: // /////////////////////////// case EVENT_PHASE_4_START: me->CastSpell(me, SPELL_DEMON_TRANSFORM_1, true); - me->getThreatMgr().ResetAllThreat(); + me->GetThreatMgr().ResetAllThreat(); me->GetMotionMaster()->MoveChase(me->GetVictim(), 35.0f); events.Reset(); events.ScheduleEvent(EVENT_SPELL_SHADOW_BLAST, 11000); @@ -654,7 +654,7 @@ public: break; case EVENT_REMOVE_DEMON_FORM: me->CastSpell(me, SPELL_DEMON_TRANSFORM_1, true); - me->getThreatMgr().ResetAllThreat(); + me->GetThreatMgr().ResetAllThreat(); events.Reset(); if (summons.HasEntry(NPC_MAIEV_SHADOWSONG)) { diff --git a/src/server/scripts/Outland/BlackTemple/boss_supremus.cpp b/src/server/scripts/Outland/BlackTemple/boss_supremus.cpp index 180a9fea6..16825cc56 100644 --- a/src/server/scripts/Outland/BlackTemple/boss_supremus.cpp +++ b/src/server/scripts/Outland/BlackTemple/boss_supremus.cpp @@ -126,7 +126,7 @@ public: Unit* FindHatefulStrikeTarget() { Unit* target = nullptr; - ThreatContainer::StorageType const& threatlist = me->getThreatMgr().getThreatList(); + ThreatContainer::StorageType const& threatlist = me->GetThreatMgr().getThreatList(); for (ThreatContainer::StorageType::const_iterator i = threatlist.begin(); i != threatlist.end(); ++i) { Unit* unit = ObjectAccessor::GetUnit(*me, (*i)->getUnitGuid()); diff --git a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_leotheras_the_blind.cpp b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_leotheras_the_blind.cpp index d9137125d..c5da506eb 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_leotheras_the_blind.cpp +++ b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_leotheras_the_blind.cpp @@ -355,7 +355,7 @@ public: void HandleScriptEffect(SpellEffIndex effIndex) { PreventHitDefaultEffect(effIndex); - GetCaster()->getThreatMgr().ResetAllThreat(); + GetCaster()->GetThreatMgr().ResetAllThreat(); if (roll_chance_i(33)) if (Unit* target = GetCaster()->GetAI()->SelectTarget(SelectTargetMethod::Random, 0, 30.0f, true)) diff --git a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_lurker_below.cpp b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_lurker_below.cpp index cfa8f9e7a..d2036cb02 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_lurker_below.cpp +++ b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_lurker_below.cpp @@ -187,7 +187,7 @@ public: target = me->GetVictim(); else { - ThreatContainer::StorageType const& t_list = me->getThreatMgr().getThreatList(); + ThreatContainer::StorageType const& t_list = me->GetThreatMgr().getThreatList(); for (ThreatContainer::StorageType::const_iterator itr = t_list.begin(); itr != t_list.end(); ++itr) if (Unit* threatTarget = ObjectAccessor::GetUnit(*me, (*itr)->getUnitGuid())) if (me->IsWithinMeleeRange(threatTarget)) diff --git a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_morogrim_tidewalker.cpp b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_morogrim_tidewalker.cpp index 479fc24ce..5c70e0271 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_morogrim_tidewalker.cpp +++ b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_morogrim_tidewalker.cpp @@ -221,7 +221,7 @@ public: // Xinef: if we have target we currently follow, return if (Unit* target = GetCaster()->GetVictim()) - if (GetCaster()->getThreatMgr().getThreat(target) >= 100000.0f) + if (GetCaster()->GetThreatMgr().getThreat(target) >= 100000.0f) return; // Xinef: acquire new target diff --git a/src/server/scripts/Outland/TempestKeep/Eye/boss_alar.cpp b/src/server/scripts/Outland/TempestKeep/Eye/boss_alar.cpp index 294f96011..076c96442 100644 --- a/src/server/scripts/Outland/TempestKeep/Eye/boss_alar.cpp +++ b/src/server/scripts/Outland/TempestKeep/Eye/boss_alar.cpp @@ -323,7 +323,7 @@ public: else { me->resetAttackTimer(); - ThreatContainer::StorageType const& threatList = me->getThreatMgr().getThreatList(); + ThreatContainer::StorageType const& threatList = me->GetThreatMgr().getThreatList(); for (ThreatContainer::StorageType::const_iterator itr = threatList.begin(); itr != threatList.end(); ++itr) if (Unit* unit = ObjectAccessor::GetUnit(*me, (*itr)->getUnitGuid())) if (me->IsWithinMeleeRange(unit)) diff --git a/src/server/scripts/Outland/TempestKeep/Eye/boss_kaelthas.cpp b/src/server/scripts/Outland/TempestKeep/Eye/boss_kaelthas.cpp index db5eebad7..7d6ab1d67 100644 --- a/src/server/scripts/Outland/TempestKeep/Eye/boss_kaelthas.cpp +++ b/src/server/scripts/Outland/TempestKeep/Eye/boss_kaelthas.cpp @@ -994,7 +994,7 @@ public: { PreventHitEffect(effIndex); - ThreatContainer::StorageType const& ThreatList = GetCaster()-> getThreatMgr().getThreatList(); + ThreatContainer::StorageType const& ThreatList = GetCaster()-> GetThreatMgr().getThreatList(); std::list targetList; for (ThreatContainer::StorageType::const_iterator itr = ThreatList.begin(); itr != ThreatList.end(); ++itr) { diff --git a/src/server/scripts/Outland/zone_netherstorm.cpp b/src/server/scripts/Outland/zone_netherstorm.cpp index 31e00d19d..3ed77d91e 100644 --- a/src/server/scripts/Outland/zone_netherstorm.cpp +++ b/src/server/scripts/Outland/zone_netherstorm.cpp @@ -1741,7 +1741,7 @@ public: // some code to cast spell Mana Burn on random target which has mana if (ManaBurnTimer <= diff) { - std::list AggroList = me->getThreatMgr().getThreatList(); + std::list AggroList = me->GetThreatMgr().getThreatList(); std::list UnitsWithMana; for (std::list::const_iterator itr = AggroList.begin(); itr != AggroList.end(); ++itr) diff --git a/src/server/scripts/Outland/zone_shadowmoon_valley.cpp b/src/server/scripts/Outland/zone_shadowmoon_valley.cpp index 8c6b4a975..a78ef56a3 100644 --- a/src/server/scripts/Outland/zone_shadowmoon_valley.cpp +++ b/src/server/scripts/Outland/zone_shadowmoon_valley.cpp @@ -488,7 +488,7 @@ public: AttackStart(Dragonmaw); } - HostileReference* ref = me->getThreatMgr().getOnlineContainer().getReferenceByTarget(caster); + HostileReference* ref = me->GetThreatMgr().getOnlineContainer().getReferenceByTarget(caster); if (ref) ref->removeReference(); } diff --git a/src/server/scripts/Pet/pet_mage.cpp b/src/server/scripts/Pet/pet_mage.cpp index e26d7656e..dd7ce5745 100644 --- a/src/server/scripts/Pet/pet_mage.cpp +++ b/src/server/scripts/Pet/pet_mage.cpp @@ -164,7 +164,7 @@ struct npc_pet_mage_mirror_image : CasterAI if (selection) { - me->getThreatMgr().ResetAllThreat(); + me->GetThreatMgr().ResetAllThreat(); me->AddThreat(selection, 1000000.0f); if (owner->IsInCombat()) diff --git a/src/server/scripts/Spells/spell_generic.cpp b/src/server/scripts/Spells/spell_generic.cpp index 1bd16c1b7..2a1c06441 100644 --- a/src/server/scripts/Spells/spell_generic.cpp +++ b/src/server/scripts/Spells/spell_generic.cpp @@ -935,7 +935,7 @@ class spell_gen_knock_away : public SpellScript PreventHitDefaultEffect(effIndex); if (Unit* target = GetHitUnit()) if (Creature* caster = GetCaster()->ToCreature()) - caster->getThreatMgr().modifyThreatPercent(target, -25); // Xinef: amount confirmed by onyxia and void reaver notes + caster->GetThreatMgr().modifyThreatPercent(target, -25); // Xinef: amount confirmed by onyxia and void reaver notes } void Register() override @@ -1041,7 +1041,7 @@ class spell_gen_hate_to_zero : public SpellScript PreventHitDefaultEffect(effIndex); if (Unit* target = GetHitUnit()) if (Creature* caster = GetCaster()->ToCreature()) - caster->getThreatMgr().modifyThreatPercent(target, -100); + caster->GetThreatMgr().modifyThreatPercent(target, -100); } void Register() override diff --git a/src/server/scripts/Spells/spell_warlock.cpp b/src/server/scripts/Spells/spell_warlock.cpp index a2ba11e09..cd8d9233e 100644 --- a/src/server/scripts/Spells/spell_warlock.cpp +++ b/src/server/scripts/Spells/spell_warlock.cpp @@ -698,7 +698,7 @@ class spell_warl_soulshatter : public SpellScript Unit* caster = GetCaster(); if (Unit* target = GetHitUnit()) { - if (target->CanHaveThreatList() && target->getThreatMgr().getThreat(caster) > 0.0f) + if (target->CanHaveThreatList() && target->GetThreatMgr().getThreat(caster) > 0.0f) caster->CastSpell(target, SPELL_WARLOCK_SOULSHATTER, true); } } diff --git a/src/server/scripts/World/npc_stave_of_ancients.h b/src/server/scripts/World/npc_stave_of_ancients.h index 8cd6b4054..d0b6c96ad 100644 --- a/src/server/scripts/World/npc_stave_of_ancients.h +++ b/src/server/scripts/World/npc_stave_of_ancients.h @@ -138,7 +138,7 @@ struct NPCStaveQuestAI : public ScriptedAI ObjectGuid gossipPlayerGUID; ObjectGuid playerGUID; bool encounterStarted; - ThreatContainer::StorageType const& threatList = me->getThreatMgr().getThreatList(); + ThreatContainer::StorageType const& threatList = me->GetThreatMgr().getThreatList(); std::map entryKeys = { { ARTORIUS_NORMAL_ENTRY, 1 },