diff --git a/RotationSolver/Updaters/SocialUpdater.cs b/RotationSolver/Updaters/SocialUpdater.cs index ac288e596..4314f396c 100644 --- a/RotationSolver/Updaters/SocialUpdater.cs +++ b/RotationSolver/Updaters/SocialUpdater.cs @@ -293,7 +293,7 @@ public override SeString GetMessage() => Character .Append(new SeString(new TextPayload($"({name}) is one of the authors of "))) .Append(RotationSolver) - .Append(new SeString(new TextPayload(". So say hello to him/her!"))); + .Append(new SeString(new TextPayload(". So say hello to them!"))); } @@ -307,7 +307,7 @@ public override SeString GetMessage() => Character .Append(new SeString(new TextPayload($" is one of the contributors of "))) .Append(RotationSolver) - .Append(new SeString(new TextPayload(". So say hello to him/her!"))); + .Append(new SeString(new TextPayload(". So say hello to them!"))); } internal class UserChatEntity : ChatEntity @@ -322,6 +322,6 @@ public override SeString GetMessage() => Character .Append(new SeString(new TextPayload($" is one of the users of "))) .Append(RotationSolver) - .Append(new SeString(new TextPayload(". So say hello to him/her!"))); + .Append(new SeString(new TextPayload(". So say hello to them!"))); } -} \ No newline at end of file +}