Add support for voice channel parties #33

Closed
wasi-master wants to merge 277 commits from master into 2.0
111 changed files with 10109 additions and 5633 deletions
Showing only changes of commit be0933c928 - Show all commits

View File

@ -833,7 +833,7 @@ class BotBase(GroupMixin):
if self.case_insensitive_prefix:
temp = []
for pre in ret:
temp += list(map(''.join, itertools.product(*((c.upper(), c.lower()) for c in ret))))
temp += list(map(''.join, itertools.product(*((c.upper(), c.lower()) for c in pre))))
ret = temp
else:
ret = list(ret)