forked from Supositware/Haha-Yes
me dumb
This commit is contained in:
parent
b6e4387c73
commit
c241bcd297
1 changed files with 10 additions and 2 deletions
|
@ -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…
Reference in a new issue