]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Fix regression that causes damage text to accumulate if cl_damagetext_accumulate_life...
authorterencehill <piuntn@gmail.com>
Thu, 13 Mar 2025 16:56:42 +0000 (17:56 +0100)
committerterencehill <piuntn@gmail.com>
Thu, 13 Mar 2025 16:56:42 +0000 (17:56 +0100)
the previous damage text has an alpha lower, instead of greater, than cl_damagetext_accumulate_alpha_rel

Regression introduced by f44a79054f "Fix some damagetext accumulation edge cases ..."

qcsrc/common/mutators/mutator/damagetext/cl_damagetext.qc

index 2bd6fba28d97bb45aa9cc2a067e46cf331473a59..082d24627f6436180ed5c5b504a21dedc744e10e 100644 (file)
@@ -272,7 +272,7 @@ NET_HANDLE(damagetext, bool isNew)
                if (flags & DTFLAG_STOP_ACCUMULATION
                        || ((autocvar_cl_damagetext_accumulate_lifetime >= 0) // negative never disowns
                                && (time - it.hit_time > autocvar_cl_damagetext_accumulate_lifetime)
-                               && (current_alpha(it) > alphathreshold)))
+                               && (current_alpha(it) < alphathreshold)))
                {
                        it.m_group = 0;
                }