mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-13 16:07:40 +00:00
Merge pull request #434 from alexey-lysiuk/fix_skill_assign
Fix incomplete assignment operator of FSkillInfo
This commit is contained in:
commit
38df0665e3
1 changed files with 2 additions and 0 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue