wop commited on
Commit
baa57de
1 Parent(s): bbc8b82

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -50,7 +50,7 @@ async def uptime(ctx):
50
  # Create a fancy embed with emojis
51
  embed = discord.Embed(title="Bot Uptime", color=discord.Color.green())
52
  embed.add_field(name="Uptime", value=f"{days} days, {hours} hours, {minutes} minutes, {seconds} seconds", inline=False)
53
- embed.set_footer(text="🤖 Powered by Discord Bot")
54
 
55
  await ctx.send(embed=embed)
56
 
@@ -86,10 +86,9 @@ async def on_member_join(member):
86
  passage = "Unable to fetch Bible verse"
87
 
88
  # Create an embed
89
- embed = discord.Embed(title=f"Welcome to the server, {member.name}!", color=discord.Color.blue())
90
- embed.add_field(name="Welcome Message", value=f"Hope you have a great stay here.", inline=False)
91
  embed.add_field(name="Random Bible Verse", value=passage, inline=False)
92
- embed.set_footer(text="👋📖 Powered by Discord Bot")
93
 
94
  await channel.send(embed=embed)
95
 
 
50
  # Create a fancy embed with emojis
51
  embed = discord.Embed(title="Bot Uptime", color=discord.Color.green())
52
  embed.add_field(name="Uptime", value=f"{days} days, {hours} hours, {minutes} minutes, {seconds} seconds", inline=False)
53
+ embed.set_footer(text="Created by Cosmos")
54
 
55
  await ctx.send(embed=embed)
56
 
 
86
  passage = "Unable to fetch Bible verse"
87
 
88
  # Create an embed
89
+ embed = discord.Embed(title=f"Welcome to the server, {member.name}!", description="Hope you have a great stay here.", color=discord.Color.blue())
 
90
  embed.add_field(name="Random Bible Verse", value=passage, inline=False)
91
+ embed.set_footer(text="Created by Cosmos")
92
 
93
  await channel.send(embed=embed)
94