diff --git a/util/ask.js b/util/ask.js index 80084b6..52266bc 100644 --- a/util/ask.js +++ b/util/ask.js @@ -3,8 +3,8 @@ module.exports = async (message, toAsk, time, nofilter, timeoutResponse) => { let filter = nofilter ? () => true : m => m.author.id === message.author.id; try { let collected = await msg.channel.awaitMessages({filter: filter, max: 1, errors: ['time'], time: time}); - collected = collected.first().content; - //if (collected.first().attachments.size) {collected = collected.first().attachments.first().url;} + if (collected.first().attachments.size > 0) {collected = collected.first().attachments.first().url;} + else {collected = collected.first().content;} return collected; } catch { if (timeoutResponse) {message.reply("This question has timed out! Please try again.");}