friendlier error messages
This commit is contained in:
parent
cd71b0ae76
commit
ce709f0576
2 changed files with 2 additions and 2 deletions
|
@ -51,7 +51,7 @@ module.exports = class {
|
||||||
json.errors.forEach(error => {
|
json.errors.forEach(error => {
|
||||||
if (error.message.startsWith('Failed to get data for ability')) {
|
if (error.message.startsWith('Failed to get data for ability')) {
|
||||||
message.channel.createMessage(
|
message.channel.createMessage(
|
||||||
`${client.constants.emojis.userError} I couldn't find any ability called ${query}`
|
`${client.constants.emojis.userError} I couldn't find any abilities with names similar to ${query}. Check your spelling, maybe?`
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
client.logger.error('POKEMON_FETCH_ERROR', error.message);
|
client.logger.error('POKEMON_FETCH_ERROR', error.message);
|
||||||
|
|
|
@ -69,7 +69,7 @@ module.exports = class {
|
||||||
json.errors.forEach(error => {
|
json.errors.forEach(error => {
|
||||||
if (error.message.startsWith('No Pokémon found')) {
|
if (error.message.startsWith('No Pokémon found')) {
|
||||||
message.channel.createMessage(
|
message.channel.createMessage(
|
||||||
`${client.constants.emojis.userError} I couldn't find any Pokemon called ${query}`
|
`${client.constants.emojis.userError} I couldn't find any Pokemon with names similar to ${query}. Check your spelling, maybe?`
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
client.logger.error('POKEMON_FETCH_ERROR', error.message);
|
client.logger.error('POKEMON_FETCH_ERROR', error.message);
|
||||||
|
|
Loading…
Reference in a new issue