diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/showMeYourName/index.tsx | 1 | ||||
-rw-r--r-- | src/utils/constants.ts | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/plugins/showMeYourName/index.tsx b/src/plugins/showMeYourName/index.tsx index ee43331..473e2f7 100644 --- a/src/plugins/showMeYourName/index.tsx +++ b/src/plugins/showMeYourName/index.tsx @@ -63,6 +63,7 @@ export default definePlugin({ settings, renderUsername: ({ author, message, isRepliedMessage, withMentionPrefix }: UsernameProps) => { + if (message.interaction) return author?.nick; try { const { username } = message.author; const { nick } = author; diff --git a/src/utils/constants.ts b/src/utils/constants.ts index 0e53313..01a4485 100644 --- a/src/utils/constants.ts +++ b/src/utils/constants.ts @@ -319,6 +319,10 @@ export const Devs = /* #__PURE__*/ Object.freeze({ name: "amia", id: 142007603549962240n }, + ImLvna: { + name: "Luna <3", + id: 174200708818665472n + } } satisfies Record<string, Dev>); // iife so #__PURE__ works correctly |