mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/Reputation: Fix Oracles/Frenzyheart not being set to war properly
Closes #9469
(cherry picked from commit 47c49c3912)
This commit is contained in:
@@ -570,7 +570,7 @@ void ReputationMgr::SetAtWar(RepListID repListID, bool on)
|
||||
void ReputationMgr::SetAtWar(FactionState* faction, bool atWar) const
|
||||
{
|
||||
// Do not allow to declare war to our own faction. But allow for rival factions (eg Aldor vs Scryer).
|
||||
if (atWar && faction->Flags.HasFlag(ReputationFlags::Peaceful))
|
||||
if (atWar && faction->Flags.HasFlag(ReputationFlags::Peaceful) && GetRank(sFactionStore.AssertEntry(faction->ID)) > REP_HATED)
|
||||
return;
|
||||
|
||||
// already set
|
||||
|
||||
Reference in New Issue
Block a user