some answers can have \n

This commit is contained in:
Joonas 2023-02-11 14:52:39 +02:00
parent 6009091ac1
commit 12be399f32
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ const command = {
await client.say( await client.say(
msg.channelName, msg.channelName,
`${msg.displayName}, ${str.substring(0, 450)}` `${msg.displayName}, ${str.replaceAll("\n", "").substring(0, 450)}`
); );
}, },
}; };