소스 검색

Fix commands being invoked without the prefix

pull/2/head
Jérôme Deuchnord 3 년 전
부모
커밋
8010535b95
1개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. +4
    -2
      _twitchbot/config.py

+ 4
- 2
_twitchbot/config.py 파일 보기

@@ -148,8 +148,10 @@ class Config:
)

def find_command(self, command: str) -> Union[None, Command]:
if command.startswith(self.command_prefix):
command = command[1:]
if not command.startswith(self.command_prefix):
return None

command = command[1:]

for c in self.commands:
if c.name == command or command in c.aliases:


불러오는 중...
취소
저장