Skip to content

Commit

Permalink
okay idk why it doesnt work today
Browse files Browse the repository at this point in the history
  • Loading branch information
Selyss committed Dec 4, 2023
1 parent 1318058 commit 829baa6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cogs/inquiry.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def __init__(self, person) -> None:

async def callback(self, inter: nextcord.Interaction) -> None:
if isinstance(inter.channel, nextcord.TextChannel):
marlow = inter.guild.get_member(MARLOW_ID)
# marlow = inter.guild.get_member(MARLOW_ID)

category = nextcord.utils.get(inter.guild.categories, id=TICKET_CATEGORY)
new_channel = await category.create_text_channel(
Expand All @@ -79,7 +79,7 @@ async def callback(self, inter: nextcord.Interaction) -> None:
)
em = nextcord.Embed()
em.color = EMBED_COLOR
em.set_author(icon_url=marlow.user.avatar, name=marlow.user.name)
# em.set_author(icon_url=marlow.user.avatar, name=marlow.user.name)
em.add_field(name="**CONTACT REQUEST ACCEPTED**", value="", inline=False)
em.add_field(name="**message**", value=self.details.value, inline=False)
em.set_footer(text=f"{inter.user.id}{get_date()}{get_time()}")
Expand Down

0 comments on commit 829baa6

Please sign in to comment.