* Renamed rule to enable modern AA scaling to be consistent with the other related rules.

This commit is contained in:
Daerath
2018-01-03 06:19:48 -05:00
parent 7d7b9d0238
commit feafd43fdf
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -406,7 +406,7 @@ void Client::AddEXP(uint32 in_add_exp, uint8 conlevel, bool resexp) {
uint32 aaexp = 0;
// if using modernAA and this character has AA XP enabled.
if (RuleB(Character, UseModernAAExperienceScale) && add_aaxp > 0)
if (RuleB(Character, ModernAAScalingEnabled) && add_aaxp > 0)
{
aaexp = ScaleAAXPBasedOnCurrentAATotal(GetAAPoints(), add_aaxp, aatotalmod);
}