From 2ac6f5171af091a2588010dac6697dcfbd0f359a Mon Sep 17 00:00:00 2001 From: Vera Aguilera Puerto <6766154+Zumorica@users.noreply.github.com> Date: Tue, 14 Dec 2021 13:28:35 +0100 Subject: [PATCH] Player tab now shows VV command buttons for player characters. (#5784) Just a smol QOL change. --- Content.Client/Administration/UI/Tabs/PlayerTab.xaml.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Content.Client/Administration/UI/Tabs/PlayerTab.xaml.cs b/Content.Client/Administration/UI/Tabs/PlayerTab.xaml.cs index 17c668cec4..c8ed5d084f 100644 --- a/Content.Client/Administration/UI/Tabs/PlayerTab.xaml.cs +++ b/Content.Client/Administration/UI/Tabs/PlayerTab.xaml.cs @@ -107,8 +107,9 @@ namespace Content.Client.Administration.UI.Tabs ClipText = true }, new VSeparator(), - new Label + new CommandButton() { + Command = $"vv {player.EntityUid}", Text = player.CharacterName, SizeFlagsStretchRatio = 2f, HorizontalExpand = true,