migration related

This commit is contained in:
2025-05-27 16:50:40 -04:00
parent b3f0e084ce
commit 046ad4f94a
5 changed files with 16 additions and 16 deletions

View File

@ -136,10 +136,10 @@ class Meme(commands.Cog):
def __init__(self, bot: Havoc) -> None:
self.bot: Havoc = bot
self.stats_db_path: str = os.path.join(
"/usr/local/share", "sqlite_dbs", "stats.db"
"/mnt/data/share", "sqlite_dbs", "stats.db"
)
self.memedb_path: str = os.path.join(
"/usr/local/share", "sqlite_dbs", "meme.db"
"/mnt/data/share", "sqlite_dbs", "meme.db"
)
self.meme_choices: list = []
self.meme_counter: int = 0

View File

@ -108,7 +108,7 @@ class Radio(commands.Cog):
"""
logging.info("Detected VC not playing... playing!")
source: discord.FFmpegAudio = discord.FFmpegOpusAudio(
self.STREAM_URL, before_options="-timeout 3000000"
self.STREAM_URL
)
vc.play( # type: ignore
source,

View File

@ -60,10 +60,10 @@ class Sing(commands.Cog):
"**Error**: No song specified, no activity found to read."
)
await ctx.respond(
"*Searching...*",
ephemeral=True
) # Must respond to interactions within 3 seconds, per Discord
await ctx.respond(
"*Searching...*",
ephemeral=True
) # Must respond to interactions within 3 seconds, per Discord
parsed = self.utility.parse_song_input(song, activity)