Browse Source

Fix responders being exported into each other.

It's important to actually return the name of the responder, yo.
pull/377/head
Adam Johnson 8 months ago
parent
commit
8333c4827f
Signed by: Hoikas
GPG Key ID: 0B6515D6FF6F271E
  1. 2
      korman/nodes/node_responder.py

2
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

Loading…
Cancel
Save