Update project configuration files, and API routes accordingly. Add SQLite runtime file ignores to .gitignore for better file management.
Some checks failed
CI / Bot (Python) (push) Failing after 49s
CI / Dashboard (Next.js) (push) Failing after 11s

This commit is contained in:
TheOnlyMace
2026-07-21 17:11:38 +02:00
parent 5f34db4f3b
commit b4110c3d66
297 changed files with 2657 additions and 2768 deletions

View File

@@ -58,7 +58,7 @@ class HelpCommand(commands.HelpCommand):
matches = get_close_matches(string, cmds)
embed = discord.Embed(
title="Zyrox Helper",
title="HexaHost Helper",
description=f">>> **Ops! Command not found with the name** `{string}`.",
color=0xFF0000
)
@@ -101,7 +101,7 @@ class HelpCommand(commands.HelpCommand):
embed = discord.Embed(
description=(
f"**{ARROWRED} __Start Zyrox X Today__**\n"
f"**{ARROWRED} __Start HexaHost Today__**\n"
f"**{ZARROW} Type {prefix}antinuke enable**\n"
f"**{ZARROW} Server Prefix:** `{prefix}`\n"
f"**{ZARROW} Total Commands:** `{len(set(self.context.bot.walk_commands()))}`\n"),
@@ -150,7 +150,7 @@ class HelpCommand(commands.HelpCommand):
)
embed.set_footer(
text=f"Requested By {self.context.author} | [Support](https://discord.gg/codexdev)",
text=f"Requested By {self.context.author} | [Support](https://discord.gg/hexahost)",
)
view = vhelp.View(mapping=mapping, ctx=self.context, homeembed=embed, ui=2)
@@ -253,7 +253,7 @@ class HelpCommand(commands.HelpCommand):
) for cmd in cog.get_commands()]
paginator = Paginator(source=FieldPagePaginator(
entries=entries,
title=f"Zyrox's {cog.qualified_name.title()} ({len(cog.get_commands())})",
title=f"HexaHost's {cog.qualified_name.title()} ({len(cog.get_commands())})",
description="`<..> Required | [..] Optional`\n\n",
color=0xFF0000,
per_page=4),