From 3a682f6861ab6e4780e3cd633dc10a1d3947b5f9 Mon Sep 17 00:00:00 2001 From: Dragory <2606411+Dragory@users.noreply.github.com> Date: Wed, 5 Aug 2020 20:21:48 +0300 Subject: [PATCH] custom_events: fix command triggers not being registered --- backend/src/plugins/CustomEvents/CustomEventsPlugin.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/src/plugins/CustomEvents/CustomEventsPlugin.ts b/backend/src/plugins/CustomEvents/CustomEventsPlugin.ts index 9f3e51e9..d5d7137d 100644 --- a/backend/src/plugins/CustomEvents/CustomEventsPlugin.ts +++ b/backend/src/plugins/CustomEvents/CustomEventsPlugin.ts @@ -31,6 +31,7 @@ export const CustomEventsPlugin = zeppelinPlugin()("cust runEvent(pluginData, event, { msg: message, args }, { args, msg: strippedMsg }); }, }); + pluginData.commands.add(eventCommand); } } },