Fixed most of the commands which used wrong error color for confirm messages

This commit is contained in:
Kwoth
2021-09-16 23:09:17 +02:00
parent a09be96200
commit 619bee811d
19 changed files with 33 additions and 33 deletions

View File

@@ -189,7 +189,7 @@ namespace NadekoBot.Modules.NSFW
return t;
});
await ReplyErrorLocalizedAsync(strs.started(interval));
await ReplyConfirmLocalizedAsync(strs.started(interval));
}
[NadekoCommand, Aliases]
@@ -229,7 +229,7 @@ namespace NadekoBot.Modules.NSFW
return t;
});
await ReplyErrorLocalizedAsync(strs.started(interval));
await ReplyConfirmLocalizedAsync(strs.started(interval));
}
#endif
@@ -363,9 +363,9 @@ namespace NadekoBot.Modules.NSFW
var added = _service.ToggleBlacklistedTag(ctx.Guild.Id, tag);
if (added)
await ReplyErrorLocalizedAsync(strs.blacklisted_tag_add(tag));
await ReplyPendingLocalizedAsync(strs.blacklisted_tag_add(tag));
else
await ReplyErrorLocalizedAsync(strs.blacklisted_tag_remove(tag));
await ReplyPendingLocalizedAsync(strs.blacklisted_tag_remove(tag));
}
}