Pārlūkot izejas kodu

Fix commands being invoked without the prefix

pull/2/head
Jérôme Deuchnord pirms 3 gadiem
vecāks
revīzija
8010535b95
1 mainītis faili ar 4 papildinājumiem un 2 dzēšanām
  1. +4
    -2
      _twitchbot/config.py

+ 4
- 2
_twitchbot/config.py Parādīt failu

@@ -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:


Notiek ielāde…
Atcelt
Saglabāt