New FullCustom ErrorType

master
masterhc 9 months ago
parent 87488ddbf2
commit 02982ce78e

@ -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);
})

Loading…
Cancel
Save