added another notification if auto role is enabled

This commit is contained in:
Miodec 2022-01-07 19:04:53 +01:00
parent 771841a2a0
commit 628fd6611a

View file

@ -114,6 +114,13 @@ export function verify(result) {
}
}
if (requirementsMet) {
if (active.autoRole) {
Notifications.add(
"You will receive a role shortly. Please don't post a screenshot in challenge submissions.",
1,
5
);
}
Notifications.add(`${active.display} challenge passed!`, 1);
return active.name;
} else {