merge-requests/3/head
Loïc Bersier 5 years ago
parent b6e4387c73
commit c241bcd297

@ -158,11 +158,19 @@ class messageListener extends Listener {
.setTimestamp();
if (attach) {
return message.channel.send(embed, {files: [attach]});
} else {
return message.channel.send(embed);
return message.channel.send(embed, {files: [attach]});
}
}
return message.channel.send(text, {files: [attach]});
if (attach) {
return message.channel.send(text, {files: [attach]});
} else {
return message.channel.send(text);
}
}
}
}

Loading…
Cancel
Save