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;