Skip to content

Commit d4d1ee4

Browse files
committed
Removed print statements.
1 parent 767783e commit d4d1ee4

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

main.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# ---------
1616

1717
# Bot Settings
18-
bot_command_prefix = "!"
18+
bot_command_prefix = ">"
1919
bot_name = "TLEBot"
2020
bot_description = "A bot created by **@BestSpyBoy**, designed specifically for the Luxury Elevator's official Discord server! Type `>help` to get started."
2121
bot_brand_color = 0xde8114
@@ -83,6 +83,7 @@ def info_embed():
8383

8484
# Function to create an error embed with a given error message
8585
def error_embed(error):
86+
print(error)
8687
# Creating an embed object with a red color and the provided error message
8788
embed = discord.Embed(color=0xFF0000, description=error)
8889
embed.set_footer(text=f"Created by {credit_name}{bot_version_number}",
@@ -128,13 +129,10 @@ async def info(ctx):
128129
@bot.command()
129130
@commands.has_permissions(administrator=True)
130131
async def settings(ctx, *, arg=None):
131-
print("settings")
132132
if arg is None:
133-
print("no")
134133
await ctx.send(embed=error_embed(">settings needs an option to change and a value."))
135134
else:
136135
command = arg.split(" ", 2)
137-
print(command)
138136
if command[0] == "activity":
139137
# could do streaming here but w h y
140138
if command[1] == "playing" and len(command) == 3:

0 commit comments

Comments
 (0)