From 86dc3bbb0ed0bc1f6f51ccd3cc7152fc6d0942a2 Mon Sep 17 00:00:00 2001 From: Nathan Windisch Date: Tue, 16 Jul 2024 02:29:14 +0100 Subject: [PATCH] Oops, optout doesn't really work. Added a TODO to fix :) Signed-off-by: Nathan --- TTSMe/TtsMeCommand.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/TTSMe/TtsMeCommand.cs b/TTSMe/TtsMeCommand.cs index fb8c77e..0025400 100644 --- a/TTSMe/TtsMeCommand.cs +++ b/TTSMe/TtsMeCommand.cs @@ -34,6 +34,7 @@ public abstract class TtsMeCommand { case "set" when voices.IsVoice(username, voice): return $"ttsme voice for '{username}' is already set to '{voice}'."; case "set": voices.SetVoice(username, voice); return $"Changing ttsme for {username} to '{voice}'"; + // TODO: Get OptOut working so that it doesn't opt you back in when next chatting case "optout": voices.RemoveVoice(username); return $"Opting {username} out of ttsme, their voice will no longer be heard by the masses (and me!)"; default: return UsageMessage;