From 862a9fdb02d730d94473d34c1ab35f967bec1b9b 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); } } },