Core/Auras: Add missing SPELL_AURA_COMPREHEND_LANGUAGE check for serverside chat translations

This commit is contained in:
Shauren
2021-05-03 20:10:56 +02:00
parent 67e16888ac
commit af5202b528

View File

@@ -22092,6 +22092,9 @@ bool Player::CanUnderstandLanguage(Language language) const
if (languageDesc.second.SkillId && HasSkill(languageDesc.second.SkillId))
return true;
if (HasAuraTypeWithMiscvalue(SPELL_AURA_COMPREHEND_LANGUAGE, language))
return true;
return false;
}