From fe5bb560df2173d5a79aeda57b74756a045136ed Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Sun, 14 May 2023 11:17:57 +1200 Subject: [PATCH] Fix tpto verb (#16397) --- Content.Server/Administration/Systems/AdminVerbSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 });