]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
fix follow comannd help locale (#25032)
authorcrazybrain23 <44417085+crazybrain23@users.noreply.github.com>
Thu, 8 Feb 2024 23:13:06 +0000 (23:13 +0000)
committerGitHub <noreply@github.com>
Thu, 8 Feb 2024 23:13:06 +0000 (18:13 -0500)
Content.Server/Administration/Commands/FollowCommand.cs

index 1ced6cf8dde983658301255ca681ae3f98c23c9f..9f94f83b4d3f1f1f6076fd859def21ed885d2cdd 100644 (file)
@@ -11,8 +11,8 @@ public sealed class FollowCommand : IConsoleCommand
     [Dependency] private readonly IEntityManager _entManager = default!;
 
     public string Command => "follow";
-    public string Description => Loc.GetString("add-uplink-command-description");
-    public string Help => Loc.GetString("add-uplink-command-help");
+    public string Description => Loc.GetString("follow-command-description");
+    public string Help => Loc.GetString("follow-command-help");
 
     public void Execute(IConsoleShell shell, string argStr, string[] args)
     {