Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
paixlukee committed Feb 19, 2025
1 parent f3bb3c1 commit 229838b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ async def on_guild_join(guild):
dnd = len([x for x in guild.members if x.status == discord.Status.dnd])
offline = len([x for x in guild.members if x.status == discord.Status.offline])
embed.add_field(name=f"Members ({len(guild.members)}):", value=f"<:online:701012643263283242> {online} <:idle:701016198531383316> {idle} <:dnd:1341854951550226513> {dnd} <:offline:1341855008970379345> {offline}")
embed.set_footer(text=f'ID: {guild.id}', icon_url=guild.icon.url if guild.icon else None)
embed.set_footer(text=f'ID: {guild.id}')
embed.set_image(url=guild.icon.url if guild.icon else None)
await log.send(embed=embed)
embed = discord.Embed(description="Thank you for adding me! Do `b.help` to see a list of my commands. Do `b.start` to create your restaurant!")
embed.add_field(name="Join my support server!", value="https://discord.gg/BCRtw7c")
Expand Down

0 comments on commit 229838b

Please sign in to comment.