remove the "try again later"

This commit is contained in:
loicbersier 2019-11-09 13:36:56 +01:00
parent 616d7c6ff2
commit 5cbf213322
3 changed files with 4 additions and 4 deletions

View file

@ -49,7 +49,7 @@ class dectalkvcCommand extends Command {
return null; return null;
} catch (err) { } catch (err) {
voiceChannel.leave(); voiceChannel.leave();
return message.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`); return message.reply(`Oh no, an error occurred: \`${err.message}\`.`);
} }
}); });
@ -75,7 +75,7 @@ class dectalkvcCommand extends Command {
} catch (err) { } catch (err) {
voiceChannel.leave(); voiceChannel.leave();
loadingmsg.delete(); loadingmsg.delete();
return message.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`); return message.reply(`Oh no, an error occurred: \`${err.message}\`.`);
} }
}); });
} }

View file

@ -90,7 +90,7 @@ class samvcCommand extends Command {
return null; return null;
} catch (err) { } catch (err) {
voiceChannel.leave(); voiceChannel.leave();
return message.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`); return message.reply(`Oh no, an error occurred: \`${err.message}\`.`);
} }
}); });
}); });

View file

@ -69,7 +69,7 @@ class TtsvcCommand extends Command {
return null; return null;
} catch (err) { } catch (err) {
voiceChannel.leave(); voiceChannel.leave();
return message.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`); return message.reply(`Oh no, an error occurred: \`${err.message}\`.`);
} }
}); });
}); });