From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Sat, 13 May 2023 23:17:57 +0000 (+1200) Subject: Fix tpto verb (#16397) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=fe5bb560df2173d5a79aeda57b74756a045136ed;p=space-station-14.git Fix tpto verb (#16397) --- diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.cs b/Content.Server/Administration/Systems/AdminVerbSystem.cs index 8ef3c1069b..4ed0bb9341 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.cs @@ -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 });