From 02982ce78e89f9a3f98e342e013bf0902013ffc2 Mon Sep 17 00:00:00 2001 From: masterhc Date: Sun, 7 Jul 2024 12:39:37 +0100 Subject: [PATCH] New FullCustom ErrorType --- lib.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/lib.js b/lib.js index 279829f..0cef2f9 100644 --- a/lib.js +++ b/lib.js @@ -415,7 +415,9 @@ const ErrorType = NoArguments: "No Arguments Given", NotOnTheList: "Unknown Command", OldMessages: "Can't delete this messages.", - FeatureInnactive: "This feature is not active." + FeatureInnactive: "This feature is not active.", + FullCustom:"", + } module.exports.ErrorType = ErrorType; @@ -502,6 +504,10 @@ class ErrorMessage embed.data.fields[0].value =ErrorType.FeatureInnactive; embed.data.fields[1].value = 'If you are an admin you can activate the function on the dashboard. (rem.wordfights.com)' break; + case ErrorType.FullCustom: + if(!extraMessages) throw console.error('ErrorType set to FullCustom but no custom message added.') + embed.data.fields[0].value = extraMessages[0]; + break; default: break; } @@ -1358,7 +1364,6 @@ exports.DiscordAPI = class DiscordAPI .then(result => result.json()) .then(response => { - console.log(response, this.authorization) if(response.message) return response.message return response.filter(x=>x.owner==true); })