Skip to content
This repository was archived by the owner on Dec 26, 2021. It is now read-only.

Commit c061438

Browse files
authored
Merge pull request #7 from vlee489/OPS
Change prefix due to collsion with miki bot
2 parents ce78b24 + 5afa676 commit c061438

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

main.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
'villager'
1616
]
1717

18-
bot = commands.Bot(command_prefix='>')
18+
bot = commands.Bot(command_prefix='<')
1919

2020

2121
@bot.event
@@ -32,13 +32,13 @@ async def on_ready():
3232
async def on_command_error(ctx, error):
3333
if isinstance(error, commands.CommandNotFound):
3434
await ctx.send("Command doesn't Exist!\n"
35-
"You can use `>help` to see what commands there are")
35+
"You can use `<help` to see what commands there are")
3636
elif isinstance(error, commands.MissingRequiredArgument):
3737
await ctx.send("Missing data, you got got to enter something after the command!\n"
38-
"You can use `>help` for help")
38+
"You can use `<help` for help")
3939
else:
4040
await ctx.send("Invalid command!\n"
41-
"You can use `>help` to see what commands there are")
41+
"You can use `<help` to see what commands there are")
4242

4343

4444
# Runs the whole show

0 commit comments

Comments
 (0)