Fix message sent when user is trying give themselves !neutral karma

This commit is contained in:
Daan Boerlage 2021-03-18 12:27:26 +01:00
parent 6c142f41d3
commit c77b501b6c
Signed by: daan
GPG key ID: FCE070E1E4956606
4 changed files with 16 additions and 1 deletions

View file

@ -125,7 +125,7 @@ namespace Geekbot.Bot.Commands.User
var actor = await GetUser(Context.User.Id);
if (user.Id == Context.User.Id)
{
await ReplyAsync(string.Format(Localization.Karma.CannotChangeOwnDown, Context.User.Username));
await ReplyAsync(string.Format(Localization.Karma.CannotChangeOwnSame, Context.User.Username));
return;
}