tweak
This commit is contained in:
parent
e3f9144608
commit
a3423bad60
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ async function addRole() {
|
|||
const currentRoleIds = rolesThatCanBeUsedThisEmojiAsReaction.map(x => x.id);
|
||||
|
||||
const { canceled, result: role } = await os.select({
|
||||
items: roles.filter(r => !currentRoleIds.includes(r.id)).map(r => ({ text: r.name, value: r })),
|
||||
items: roles.filter(r => r.isPublic).filter(r => !currentRoleIds.includes(r.id)).map(r => ({ text: r.name, value: r })),
|
||||
});
|
||||
if (canceled) return;
|
||||
|
||||
|
|
Loading…
Reference in a new issue