diff --git a/src/plugins/vcNarrator.tsx b/src/plugins/vcNarrator.tsx index 575dcbc4c..b8f0fdef9 100644 --- a/src/plugins/vcNarrator.tsx +++ b/src/plugins/vcNarrator.tsx @@ -165,7 +165,7 @@ export default definePlugin({ if (!type) continue; const template = Settings.plugins.VcNarrator[type + "Message"]; - const user = isMe ? "" : UserStore.getUser(userId).username; + const user = isMe && !Settings.plugins.VcNarrator.sayOwnName ? "" : UserStore.getUser(userId).username; const channel = ChannelStore.getChannel(id).name; speak(formatText(template, user, channel)); @@ -230,6 +230,11 @@ export default definePlugin({ markers: [0.1, 0.5, 1, 2, 5, 10], stickToMarkers: false }, + sayOwnName: { + description: "Say own name", + type: OptionType.BOOLEAN, + default: false + }, joinMessage: { type: OptionType.STRING, description: "Join Message",