Spaces:
Paused
Paused
Update app.py
Browse files
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="
|
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="
|
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 |
|