Minor Error Catching Modifications

This commit is contained in:
Daniel Odendahl Jr
2017-04-11 14:10:39 +00:00
parent 0e6060f4f5
commit b0ff08a405
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -26,6 +26,6 @@ module.exports = class CowsayCommand extends Command {
text: turnToCowsay,
e: 'oO',
T: 'U '
})).catch(error => message.say(':x: Error! Perhaps the content is too long?'));
})).catch(() => message.say(':x: Error! Perhaps the content is too long?'));
}
};