Skip to content
This repository was archived by the owner on Feb 7, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,19 @@ async def levelup_messages(ctx: ApplicationContext, enabled: bool):
)
await ctx.respond(embed=localembed)

@client.slash_command(
name="credits",
description="See the credits for isobot's development."
)
async def credits(ctx: ApplicationContext):
"""See the credits for isobot's development."""
localembed = discord.Embed(
title="Credits",
description="A very big thank you to everyone who has helped support the isobot project's development! :)\n\n**Head Devs:**\n- @notsniped (owner)\n- @dtxc (head-dev)\n- @XyrenChess (head-dev)\n\nisobot (C) 2020-2024\nNKA (C) 2022-2024",
color=color
)
await ctx.respond(embed=localembed)

# Initialization
initial_setup() # Check for any missing sub-directories or databases in bot directory
active_cogs = [
Expand Down