From 165f17aecef105b3cf92b9564d9e6625fd7af073 Mon Sep 17 00:00:00 2001 From: Rando717 <228354122+Rando717@users.noreply.github.com> Date: Sun, 28 Sep 2025 20:54:01 +0200 Subject: [PATCH] cfz_caching_condition.py (moved CFZ nodes to CFZ/category) moving all CFZ nodes into CFZ category, more organized --- cfz/nodes/CFZ-caching/cfz_caching_condition.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cfz/nodes/CFZ-caching/cfz_caching_condition.py b/cfz/nodes/CFZ-caching/cfz_caching_condition.py index 670156a10..40030efa4 100644 --- a/cfz/nodes/CFZ-caching/cfz_caching_condition.py +++ b/cfz/nodes/CFZ-caching/cfz_caching_condition.py @@ -45,7 +45,7 @@ class save_conditioning: RETURN_TYPES = ("CONDITIONING",) RETURN_NAMES = ("conditioning",) FUNCTION = "save_conditioning" - CATEGORY = "CFZ Save-Load Conditioning" + CATEGORY = "CFZ/conditioning" def save_conditioning(self, conditioning, cache_name): """Save conditioning to cache with custom name""" @@ -126,7 +126,7 @@ class load_conditioning: RETURN_TYPES = ("CONDITIONING",) RETURN_NAMES = ("conditioning",) FUNCTION = "load_conditioning" - CATEGORY = "CFZ Save-Load Conditioning" + CATEGORY = "CFZ/conditioning" @classmethod def get_cached_files(cls): @@ -226,7 +226,7 @@ class CFZ_PrintMarker: RETURN_NAMES = ("output",) OUTPUT_NODE = True FUNCTION = "run" - CATEGORY = "CFZ Utils/Debug" + CATEGORY = "CFZ/utils/debug" def run(self, message, timer_name="workflow_timer", is_start_point=False, is_end_point=False, show_current_time=True, trigger=None, unique_id=None, extra_pnginfo=None):