From 925f1d75147903b208e30fa36039cc5f42fc1f11 Mon Sep 17 00:00:00 2001 From: kijai <40791699+kijai@users.noreply.github.com> Date: Fri, 19 Dec 2025 18:21:36 +0200 Subject: [PATCH] Correct cond combine order --- nodes/nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes/nodes.py b/nodes/nodes.py index 25397f2..cd31fa1 100644 --- a/nodes/nodes.py +++ b/nodes/nodes.py @@ -212,7 +212,7 @@ Combines multiple conditioning nodes into one for c in range(1, inputcount): new_cond = kwargs[f"conditioning_{c + 1}"] if operation == "combine": - cond = cond_combine_node.combine(new_cond, cond)[0] + cond = cond_combine_node.combine(cond, new_cond)[0] elif operation == "concat": cond = cond_concat_node.concat(cond, new_cond)[0] return (cond, inputcount,)