use fork of denoflate which is cacheable
This commit is contained in:
parent
60e2655085
commit
a16d209a20
1 changed files with 4 additions and 1 deletions
|
@ -169,7 +169,10 @@ client.on('messageCreate', async (msg: Message) => {
|
||||||
)
|
)
|
||||||
} else if (msg.content === '!textfile') {
|
} else if (msg.content === '!textfile') {
|
||||||
msg.channel.send({
|
msg.channel.send({
|
||||||
file: new MessageAttachment('hello.txt', 'hello world')
|
files: [
|
||||||
|
new MessageAttachment('hello.txt', 'world'),
|
||||||
|
new MessageAttachment('world.txt', 'hello')
|
||||||
|
]
|
||||||
})
|
})
|
||||||
} else if (msg.content === '!join') {
|
} else if (msg.content === '!join') {
|
||||||
if (msg.member === undefined) return
|
if (msg.member === undefined) return
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue