From 8ac39d171299dedfd2e79403ab459b88e2e5fed0 Mon Sep 17 00:00:00 2001 From: Phillip Stephens Date: Wed, 30 Mar 2022 23:41:37 -0700 Subject: [PATCH] CDamageVulnerability: Fix inverted conditional --- Runtime/World/CDamageVulnerability.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime/World/CDamageVulnerability.cpp b/Runtime/World/CDamageVulnerability.cpp index 809f34152..1ded26aaf 100644 --- a/Runtime/World/CDamageVulnerability.cpp +++ b/Runtime/World/CDamageVulnerability.cpp @@ -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()) {