Fixed the helptext for sex me
, and added timestamp to embed when requesting with sex me
This commit is contained in:
parent
f604fc5694
commit
f4be12b635
1 changed files with 7 additions and 7 deletions
|
@ -20,8 +20,8 @@ class Sex(Cog):
|
|||
|
||||
Please, *please*, specify your account area in your reason.
|
||||
Not complying to this will be a denied request.
|
||||
- "normal" if you want our normal services, like GitLab and access to the main user container
|
||||
- "sexhouse" if you want access to other services, like Email and others
|
||||
- "lite" if you want our normal services, like GitLab and Email
|
||||
- "sexhouse" if you want access to other services, like the Main User CT and Owncloud
|
||||
|
||||
thanks
|
||||
"""
|
||||
|
@ -43,11 +43,11 @@ class Sex(Cog):
|
|||
em = discord.Embed(title=f'Sexhouse request',
|
||||
color=discord.Colour(0xf84a6e))
|
||||
|
||||
em.add_field(name='who', value=ctx.author.mention)
|
||||
em.add_field(name='username', value=username)
|
||||
em.add_field(name='reason', value=reason)
|
||||
|
||||
em.add_field(name='generated password',
|
||||
em.add_field(name='Who', value=ctx.author.mention)
|
||||
em.add_field(name='Username', value=username)
|
||||
em.add_field(name='Reason', value=reason)
|
||||
em.add_field(name='Timestamp', str(context.timestamp))
|
||||
em.add_field(name='Generated Password',
|
||||
value=base64.b64encode(os.urandom(100))[:16].decode())
|
||||
await chan.send(embed=em)
|
||||
await ctx.send('done')
|
||||
|
|
Loading…
Reference in a new issue