add BreakController to /run closure

This commit is contained in:
LenAnderson 2024-07-23 16:27:27 -04:00
parent 80879e0c51
commit 0d75ca9a5d

View File

@ -1834,6 +1834,7 @@ async function runCallback(args, name) {
} }
if (name instanceof SlashCommandClosure) { if (name instanceof SlashCommandClosure) {
name.breakController = new SlashCommandBreakController();
return (await name.execute())?.pipe; return (await name.execute())?.pipe;
} }