From df32e8d3050d1df7f2cc4cf64999206e346ad6c2 Mon Sep 17 00:00:00 2001 From: Jakup <84023677+Jacob1Tm@users.noreply.github.com> Date: Tue, 25 Jun 2024 21:40:25 +0200 Subject: [PATCH] fix missing space in MoreKaomoji (#2625) --- src/plugins/moreKaomoji/index.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/plugins/moreKaomoji/index.ts b/src/plugins/moreKaomoji/index.ts index 959910848..b5e33d960 100644 --- a/src/plugins/moreKaomoji/index.ts +++ b/src/plugins/moreKaomoji/index.ts @@ -27,12 +27,12 @@ export default definePlugin({ dependencies: ["CommandsAPI"], commands: [ { name: "dissatisfaction", description: " >﹏<" }, - { name: "smug", description: " ಠ_ಠ" }, - { name: "happy", description: " ヽ(´▽`)/" }, - { name: "crying", description: " ಥ_ಥ" }, - { name: "angry", description: " ヽ(`Д´)ノ" }, - { name: "anger", description: " ヽ(o`皿′o)ノ" }, - { name: "joy", description: " <( ̄︶ ̄)>" }, + { name: "smug", description: "ಠ_ಠ" }, + { name: "happy", description: "ヽ(´▽`)/" }, + { name: "crying", description: "ಥ_ಥ" }, + { name: "angry", description: "ヽ(`Д´)ノ" }, + { name: "anger", description: "ヽ(o`皿′o)ノ" }, + { name: "joy", description: "<( ̄︶ ̄)>" }, { name: "blush", description: "૮ ˶ᵔ ᵕ ᵔ˶ ა" }, { name: "confused", description: "(•ิ_•ิ)?" }, { name: "sleeping", description: "(ᴗ_ᴗ)" }, @@ -42,7 +42,7 @@ export default definePlugin({ ...data, options: [OptionalMessageOption], execute: opts => ({ - content: findOption(opts, "message", "") + data.description + content: findOption(opts, "message", "") + " " + data.description }) })) });