fix missing space in MoreKaomoji (#2625)
This commit is contained in:
parent
62afad3e65
commit
df32e8d305
1 changed files with 7 additions and 7 deletions
|
@ -27,12 +27,12 @@ export default definePlugin({
|
||||||
dependencies: ["CommandsAPI"],
|
dependencies: ["CommandsAPI"],
|
||||||
commands: [
|
commands: [
|
||||||
{ name: "dissatisfaction", description: " >﹏<" },
|
{ name: "dissatisfaction", description: " >﹏<" },
|
||||||
{ name: "smug", description: " ಠ_ಠ" },
|
{ name: "smug", description: "ಠ_ಠ" },
|
||||||
{ name: "happy", description: " ヽ(´▽`)/" },
|
{ name: "happy", description: "ヽ(´▽`)/" },
|
||||||
{ name: "crying", description: " ಥ_ಥ" },
|
{ name: "crying", description: "ಥ_ಥ" },
|
||||||
{ name: "angry", description: " ヽ(`Д´)ノ" },
|
{ name: "angry", description: "ヽ(`Д´)ノ" },
|
||||||
{ name: "anger", description: " ヽ(o`皿′o)ノ" },
|
{ name: "anger", description: "ヽ(o`皿′o)ノ" },
|
||||||
{ name: "joy", description: " <( ̄︶ ̄)>" },
|
{ name: "joy", description: "<( ̄︶ ̄)>" },
|
||||||
{ name: "blush", description: "૮ ˶ᵔ ᵕ ᵔ˶ ა" },
|
{ name: "blush", description: "૮ ˶ᵔ ᵕ ᵔ˶ ა" },
|
||||||
{ name: "confused", description: "(•ิ_•ิ)?" },
|
{ name: "confused", description: "(•ิ_•ิ)?" },
|
||||||
{ name: "sleeping", description: "(ᴗ_ᴗ)" },
|
{ name: "sleeping", description: "(ᴗ_ᴗ)" },
|
||||||
|
@ -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
|
||||||
})
|
})
|
||||||
}))
|
}))
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue