From 8cb886be3825615ce122d7321089def1d203ab61 Mon Sep 17 00:00:00 2001 From: Patrick Dulebohn <40325124+DoobesURU@users.noreply.github.com> Date: Sat, 19 Mar 2022 20:40:15 -0400 Subject: [PATCH] Fix EnumProperty descriptions Adjust descriptions due to my blatant copy/paste per Hoikas. Co-authored-by: Adam Johnson --- korman/nodes/node_messages.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/korman/nodes/node_messages.py b/korman/nodes/node_messages.py index c0e67d0..1c2fa4d 100644 --- a/korman/nodes/node_messages.py +++ b/korman/nodes/node_messages.py @@ -776,9 +776,9 @@ class PlasmaSoundMsgNode(idprops.IDPropObjectMixin, PlasmaMessageWithCallbacksNo subtype="PERCENTAGE") event = EnumProperty(name="Callback", description="Event upon which to callback the Responder", - items=[("kEnd", "End", "When the action ends"), + items=[("kEnd", "End", "When the sound ends"), ("NONE", "(None)", "Don't notify the Responder at all"), - ("kStop", "Stop", "When the action is stopped by a message")], + ("kStop", "Stop", "When the sound is stopped by a message")], default="NONE") def convert_callback_message(self, exporter, so, msg, target, wait):