]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Fix tpto verb (#16397)
authorLeon Friedrich <60421075+ElectroJr@users.noreply.github.com>
Sat, 13 May 2023 23:17:57 +0000 (11:17 +1200)
committerGitHub <noreply@github.com>
Sat, 13 May 2023 23:17:57 +0000 (16:17 -0700)
Content.Server/Administration/Systems/AdminVerbSystem.cs

index 8ef3c1069b452667f2df1d651ac58da5789fc3bc..4ed0bb934137815d82835856515811968e723e9a 100644 (file)
@@ -158,7 +158,7 @@ namespace Content.Server.Administration.Systems
                     Text = Loc.GetString("admin-verbs-teleport-here"),
                     Category = VerbCategory.Admin,
                     Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/VerbIcons/close.svg.192dpi.png")),
-                    Act = () => _console.ExecuteCommand(player, $"tpto {args.Target} {args.User}"),
+                    Act = () => _console.ExecuteCommand(player, $"tpto {args.User} {args.Target}"),
                     Impact = LogImpact.Low
                 });