fix(arabot): fix preconditions not being in a list

This commit is contained in:
smyalygames 2022-10-27 02:35:14 +01:00
parent 28e06a3b88
commit 222ec5b8b3

View File

@ -27,7 +27,7 @@ class ConvincedCommand extends Command {
...options, ...options,
name: 'convinced', name: 'convinced',
description: 'Gives the convinced role', description: 'Gives the convinced role',
preconditions: ['MentorOnly', 'VerifierOnly', 'ModOnly'], preconditions: [['MentorOnly', 'VerifierOnly', 'ModOnly']],
}); });
} }