diff --git a/Content.Client/UserInterface/HumanoidProfileEditor.cs b/Content.Client/UserInterface/HumanoidProfileEditor.cs index 88e477dbd0..a4a26ddc15 100644 --- a/Content.Client/UserInterface/HumanoidProfileEditor.cs +++ b/Content.Client/UserInterface/HumanoidProfileEditor.cs @@ -331,7 +331,7 @@ namespace Content.Client.UserInterface private void UpdateSaveButton() { - _saveButton.Disabled = !(Profile is null) || !IsDirty; + _saveButton.Disabled = Profile is null || !IsDirty; } public void UpdateControls()