Merge pull request #434 from alexey-lysiuk/fix_skill_assign

Fix incomplete assignment operator of FSkillInfo
This commit is contained in:
coelckers 2015-12-01 14:24:10 +01:00
commit 38df0665e3
1 changed files with 2 additions and 0 deletions

View File

@ -490,7 +490,9 @@ FSkillInfo &FSkillInfo::operator=(const FSkillInfo &other)
MonsterHealth = other.MonsterHealth;
FriendlyHealth = other.FriendlyHealth;
NoPain = other.NoPain;
Infighting = other.Infighting;
ArmorFactor = other.ArmorFactor;
HealthFactor = other.HealthFactor;
return *this;
}