Fix incomplete assignment operator of FSkillInfo

See http://forum.zdoom.org/viewtopic.php?t=50026
This commit is contained in:
alexey.lysiuk 2015-12-01 14:30:57 +02:00
parent 5cd8d5f5d9
commit 4adf421513
1 changed files with 2 additions and 0 deletions

View File

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