Core/Auras: Corrected SPELL_AURA_MOD_HONOR_GAIN_PCT implementation - it should only increase honor gains from some sources
Port From (https://github.com/TrinityCore/TrinityCore/commit/c56d18287dad88b214b4a33ccd785484b165acbe)
This commit is contained in:
@@ -1118,7 +1118,7 @@ namespace Game.Entities
|
||||
// honor reward
|
||||
uint honor = quest.CalculateHonorGain(GetLevel());
|
||||
if (honor != 0)
|
||||
RewardHonor(null, 0, (int)honor);
|
||||
RewardHonor(null, 0, (int)honor, HonorGainSource.Quest);
|
||||
|
||||
// title reward
|
||||
if (quest.RewardTitleId != 0)
|
||||
|
||||
Reference in New Issue
Block a user