.v+t missing perms string was missing

This commit is contained in:
Kwoth 2017-03-18 09:33:13 +01:00
parent 23fa188922
commit 2331b2ea20

View File

@ -166,7 +166,7 @@ namespace NadekoBot.Modules.Administration
var botUser = await guild.GetCurrentUserAsync().ConfigureAwait(false); var botUser = await guild.GetCurrentUserAsync().ConfigureAwait(false);
if (!botUser.GuildPermissions.ManageRoles || !botUser.GuildPermissions.ManageChannels) if (!botUser.GuildPermissions.ManageRoles || !botUser.GuildPermissions.ManageChannels)
{ {
await ReplyErrorLocalized("vt_no_perms").ConfigureAwait(false); await ReplyErrorLocalized("vt_perms").ConfigureAwait(false);
return; return;
} }