Skip to content

Commit

Permalink
Make no permitted roles a status rather than a warning since it's not…
Browse files Browse the repository at this point in the history
… a problem anymore

See #68
  • Loading branch information
TrojanerHD committed Jan 15, 2023
1 parent 0662722 commit a67b876
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FeatureChecker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default class FeatureChecker {
try {
const info: GuildInfo = await GuildSettings.settings(guild.id);
if (info.permissionRoles.length === 0)
this.warning(`No permitted roles set for ${guildInfo}`);
this.status(`No permitted roles set for ${guildInfo}`);
if (info.roles.length === 0) this.status(`Roles disabled ${guildInfo}`);
else this.status(`Roles enabled ${guildInfo}`);
if (info.roles.length > 25) {
Expand Down

0 comments on commit a67b876

Please sign in to comment.