fix missing space in MoreKaomoji (#2625)

This commit is contained in:
Jakup 2024-06-25 21:40:25 +02:00 committed by GitHub
parent 62afad3e65
commit df32e8d305
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -42,7 +42,7 @@ export default definePlugin({
...data, ...data,
options: [OptionalMessageOption], options: [OptionalMessageOption],
execute: opts => ({ execute: opts => ({
content: findOption(opts, "message", "") + data.description content: findOption(opts, "message", "") + " " + data.description
}) })
})) }))
}); });