Fix tpto verb (#16397)

This commit is contained in:
Leon Friedrich
2023-05-14 11:17:57 +12:00
committed by GitHub
parent 88abeb3b23
commit fe5bb560df

View 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
});