fix(discord-bot): remove unexpected top level return

This commit is contained in:
Pihkaal
2025-12-05 20:48:18 +01:00
parent 30cc00efa8
commit a984daddfe

View File

@@ -36,7 +36,7 @@ switch (mode.type) {
default: { default: {
// @ts-ignore // @ts-ignore
return logger.fatal(`ERROR: Not implemented: '${mode.type}'`); logger.fatal(`ERROR: Not implemented: '${mode.type}'`);
} }
} }