fix #157
This commit is contained in:
parent
4099c0fafc
commit
fca826df39
|
@ -609,7 +609,7 @@ class StartDraftCommand(Command):
|
||||||
draft = Draft.make_draft()
|
draft = Draft.make_draft()
|
||||||
mentions = {f'<@!{m.id}>' for m in msg.mentions}
|
mentions = {f'<@!{m.id}>' for m in msg.mentions}
|
||||||
content = msg.content.split('\n')[1:] # drop command out of message
|
content = msg.content.split('\n')[1:] # drop command out of message
|
||||||
if len(content) % 3:
|
if not content or len(content) % 3:
|
||||||
await msg.channel.send('Invalid list')
|
await msg.channel.send('Invalid list')
|
||||||
raise ValueError('Invalid length')
|
raise ValueError('Invalid length')
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user