From 46df50388776ccab04df071ae5a8adb4ecf390d8 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 20 Apr 2024 17:28:20 -0400 Subject: [PATCH] Add funny message if no invite --- framework/Client.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/Client.js b/framework/Client.js index 846f2594..8c332e2d 100644 --- a/framework/Client.js +++ b/framework/Client.js @@ -65,7 +65,7 @@ module.exports = class CommandClient extends Client { await msg.reply(stripIndents` An error occurred while running this command: \`${err.message}\`. You shouldn't ever recieve an error like this. - ${this.invite ? `Please visit ${this.invite} for support.` : ''} + ${this.invite ? `Please visit ${this.invite} for support.` : 'Please pray to any god that listens.'} `); } } @@ -144,7 +144,7 @@ module.exports = class CommandClient extends Client { await msg.reply(stripIndents` An error occurred while running this command: \`${err.message}\`. You shouldn't ever recieve an error like this. - ${this.invite ? `Please visit ${this.invite} for support.` : ''} + ${this.invite ? `Please visit ${this.invite} for support.` : 'Please pray to any god that listens.'} `); } }