merge-requests/3/head
loicbersier 5 years ago
commit 3becb69642

@ -158,11 +158,19 @@ class messageListener extends Listener {
.setTimestamp(); .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