fix error messages

This commit is contained in:
derpystuff 2022-07-03 23:11:07 +02:00
parent bfb3168bf9
commit 02d2966ff0
4 changed files with 4 additions and 4 deletions

View file

@ -54,7 +54,7 @@ module.exports = {
}); });
}catch(e){ }catch(e){
console.log(e) console.log(e)
return editOrReply(context, {embeds:[createEmbed("error", context, `Unable to perform google search.`)]}) return editOrReply(context, {embeds:[createEmbed("error", context, `Unable to perform bing search.`)]})
} }
}, },
}; };

View file

@ -50,7 +50,7 @@ module.exports = {
}); });
}catch(e){ }catch(e){
console.log(e) console.log(e)
return editOrReply(context, {embeds:[createEmbed("error", context, `Unable to perform google search.`)]}) return editOrReply(context, {embeds:[createEmbed("error", context, `Unable to perform bing search.`)]})
} }
}, },
}; };

View file

@ -52,7 +52,7 @@ module.exports = {
}); });
}catch(e){ }catch(e){
console.log(e) console.log(e)
return editOrReply(context, {embeds:[createEmbed("error", context, `Unable to perform google search.`)]}) return editOrReply(context, {embeds:[createEmbed("error", context, `Unable to perform wikihow search.`)]})
} }
}, },
}; };

View file

@ -53,7 +53,7 @@ module.exports = {
}); });
}catch(e){ }catch(e){
console.log(e) console.log(e)
return editOrReply(context, {embeds:[createEmbed("error", context, `Unable to perform google search.`)]}) return editOrReply(context, {embeds:[createEmbed("error", context, `Unable to perform youtube search.`)]})
} }
}, },
}; };