Skip to content
This repository was archived by the owner on Mar 12, 2025. It is now read-only.

Commit b4d55d3

Browse files
committed
feat: make commands case-insensitive
1 parent d2036b2 commit b4d55d3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bot.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@
5353

5454
logger = logging.getLogger("bot")
5555

56-
bot = commands.Bot(command_prefix=COMMAND_PREFIX, owner_id=OWNER_ID)
56+
bot = commands.Bot(
57+
command_prefix=COMMAND_PREFIX, case_insensitive=True, owner_id=OWNER_ID
58+
)
5759

5860
# -----------------------------------------------------------------------------
5961

0 commit comments

Comments
 (0)