Fixed blacklist/unblacklist message, thanks ghost

This commit is contained in:
Kwoth 2016-12-22 12:16:14 +01:00
parent e8d8134321
commit 4d7fc8402b

View File

@ -105,7 +105,10 @@ namespace NadekoBot.Modules.Permissions
} }
if(action == AddRemove.Add)
await channel.SendConfirmAsync($"Blacklisted a `{type}` with id `{id}`").ConfigureAwait(false); await channel.SendConfirmAsync($"Blacklisted a `{type}` with id `{id}`").ConfigureAwait(false);
else
await channel.SendConfirmAsync($"Unblacklisted a `{type}` with id `{id}`").ConfigureAwait(false);
} }
} }
} }