diff --git a/Content.Client/Chemistry/UI/ChemMasterBoundUserInterface.cs b/Content.Client/Chemistry/UI/ChemMasterBoundUserInterface.cs index a669a8da4c..52d71beb34 100644 --- a/Content.Client/Chemistry/UI/ChemMasterBoundUserInterface.cs +++ b/Content.Client/Chemistry/UI/ChemMasterBoundUserInterface.cs @@ -48,6 +48,11 @@ namespace Content.Client.Chemistry.UI (uint) _window.BottleDosage.Value, _window.LabelLine)); _window.BufferSortButton.OnPressed += _ => SendMessage( new ChemMasterSortingTypeCycleMessage()); + // Starlight-start + _window.CreatePatchButton.OnPressed += _ => SendMessage( + new ChemMasterCreatePatchesMessage( + (uint)_window.PatchDosage.Value, (uint)_window.PatchNumber.Value, _window.LabelLine)); + // Starlight-end for (uint i = 0; i < _window.PillTypeButtons.Length; i++) { diff --git a/Content.Client/Humanoid/HumanoidAppearanceSystem.cs b/Content.Client/Humanoid/HumanoidAppearanceSystem.cs index 34ad4a2c8a..99f2db2ba0 100644 --- a/Content.Client/Humanoid/HumanoidAppearanceSystem.cs +++ b/Content.Client/Humanoid/HumanoidAppearanceSystem.cs @@ -58,11 +58,11 @@ public sealed class HumanoidAppearanceSystem : SharedHumanoidAppearanceSystem var humanoidAppearance = entity.Comp1; var sprite = entity.Comp2; - + // Sunrise-start var scale = new Vector2(humanoidAppearance.Width, humanoidAppearance.Height); _sprite.SetScale(entity.Owner, scale); - + // Sunrise-end sprite[_sprite.LayerMapReserve((entity.Owner, sprite), HumanoidVisualLayers.Eyes)].Color = humanoidAppearance.EyeColor; } diff --git a/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml b/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml index fc93dd21e9..87076be66b 100644 --- a/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml +++ b/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml @@ -168,7 +168,7 @@ - +