Skip to content

Commit

Permalink
Version Control
Browse files Browse the repository at this point in the history
  • Loading branch information
dkoz committed Sep 4, 2024
1 parent 841ce3c commit c728aa9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions cogs/help.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,11 @@ async def help(self, interaction: nextcord.Interaction):
# Please do not remove the about me section. I've spent a lot of time on this bot and I would appreciate it if you left it in.
@nextcord.slash_command(description="Information about the Palworld bot.")
async def about(self, interaction: nextcord.Interaction):


title_name = f"Palworld Palbot {constants.PALBOT_VERSION}"

embed = nextcord.Embed(
title="Palworld Bot", color=nextcord.Color.blue(), url=constants.TITLE_URL
title=title_name, color=nextcord.Color.blue(), url=constants.TITLE_URL
)
embed.set_footer(text=constants.FOOTER_TEXT, icon_url=constants.FOOTER_IMAGE)
embed.add_field(
Expand Down
1 change: 1 addition & 0 deletions utils/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
FOOTER_IMAGE = "https://palbot.gg/images/rexavatar.png"
FOOTER_TEXT = "Powered by Palbot"
TITLE_URL = "https://github.com/dkoz/palworld-palbot"
PALBOT_VERSION = "v0.3.2"
PALBOT_ART = r"""
__________ .__ ___. __
\______ \_____ | |\_ |__ _____/ |_
Expand Down

0 comments on commit c728aa9

Please sign in to comment.