aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCraftedRO <24683355+CraftedRO@users.noreply.github.com>2024-02-25 12:09:18 +0200
committerGitHub <noreply@github.com>2024-02-25 11:09:18 +0100
commit534a03644a58919da2da0f4df4ef5a994e8c8baa (patch)
tree4ce187817a48246a0f93374f0d9a141e1dbfd2ab /src
parent42b099bd050ca9259bede95ae4117243e680fcee (diff)
Core/Battlegrounds: Removed Honorable Defender from Alterac Valley (#29740)
Closes #12860
Diffstat (limited to 'src')
-rw-r--r--src/server/game/Battlegrounds/Zones/BattlegroundAV.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundAV.cpp b/src/server/game/Battlegrounds/Zones/BattlegroundAV.cpp
index a10fc491f20..8d258d34075 100644
--- a/src/server/game/Battlegrounds/Zones/BattlegroundAV.cpp
+++ b/src/server/game/Battlegrounds/Zones/BattlegroundAV.cpp
@@ -353,7 +353,6 @@ Creature* BattlegroundAV::AddAVCreature(uint16 cinfoid, uint16 type)
if (Creature* trigger = AddCreature(WORLD_TRIGGER, triggerSpawnID, BG_AV_CreaturePos[triggerSpawnID]))
{
trigger->SetFaction(newFaction);
- trigger->CastSpell(trigger, SPELL_HONORABLE_DEFENDER_25Y, false);
}
}
@@ -756,9 +755,7 @@ void BattlegroundAV::PopulateNode(BG_AV_Nodes node)
GetTeamIndexByTeamId(owner));
}
- //add bonus honor aura trigger creature when node is accupied
- //cast bonus aura (+50% honor in 25yards)
- //aura should only apply to players who have accupied the node, set correct faction for trigger
+ // set correct faction for trigger
if (trigger)
{
if (owner != ALLIANCE && owner != HORDE)//node can be neutral, remove trigger
@@ -767,7 +764,6 @@ void BattlegroundAV::PopulateNode(BG_AV_Nodes node)
return;
}
trigger->SetFaction(owner == ALLIANCE ? FACTION_ALLIANCE_GENERIC : FACTION_HORDE_GENERIC);
- trigger->CastSpell(trigger, SPELL_HONORABLE_DEFENDER_25Y, false);
}
}
void BattlegroundAV::DePopulateNode(BG_AV_Nodes node)