From 39fead0928fa60f79c6667654d1d3659668be99e Mon Sep 17 00:00:00 2001
From: SeaswimmerTheFsh <seaswimmerthefsh@gmail.com>
Date: Wed, 21 Feb 2024 11:47:13 -0500
Subject: [PATCH] fix(tts): fixed missing embed in menu

---
 tts/tts.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tts/tts.py b/tts/tts.py
index 003bcde..531149c 100644
--- a/tts/tts.py
+++ b/tts/tts.py
@@ -12,7 +12,7 @@ from redbot.core import commands
 from redbot.core.bot import Red
 
 from tts.config import config
-from tts.menu import Menu
+from tts.menu import Menu, embed
 
 
 class TTS(commands.Cog):
@@ -45,7 +45,7 @@ class TTS(commands.Cog):
     @commands.admin_or_permissions(manage_guild=True)
     async def tts(self, ctx: commands.Context):
         """Text to Speech settings"""
-        await ctx.send(view=Menu(ctx))
+        await ctx.send(embed=embed, view=Menu(ctx))
 
     @tts.command(name="google")
     @commands.is_owner()