From 8333c4827fae48bcc6007c6d2fed26ef9ce25649 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Sat, 19 Aug 2023 16:26:17 -0400 Subject: [PATCH] Fix responders being exported into each other. It's important to actually return the name of the responder, yo. --- korman/nodes/node_responder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/korman/nodes/node_responder.py b/korman/nodes/node_responder.py index 1e8ffe7..579275d 100644 --- a/korman/nodes/node_responder.py +++ b/korman/nodes/node_responder.py @@ -94,7 +94,7 @@ class PlasmaResponderNode(PlasmaVersionedNode, bpy.types.Node): if self.is_named_responder: return self.name else: - super().get_key_name(single, suffix, bl, so) + return super().get_key_name(single, suffix, bl, so) def export(self, exporter, bo, so): # Ensure there is not already a Responder that matches this name in the PRP