mirror of https://github.com/AxioDL/metaforce.git
CDamageVulnerability: Fix inverted conditional
This commit is contained in:
parent
a994907dd4
commit
8ac39d1712
|
@ -220,7 +220,7 @@ bool CDamageVulnerability::WeaponHits(const CWeaponMode& mode, bool checkDirect)
|
|||
}
|
||||
|
||||
if (!chargedHits || !mode.IsCharged()) {
|
||||
if (comboedHits) {
|
||||
if (!comboedHits) {
|
||||
return false;
|
||||
}
|
||||
if (!mode.IsComboed()) {
|
||||
|
|
Loading…
Reference in New Issue