From e7847d1555639e71b0137b2849e6b469997bb986 Mon Sep 17 00:00:00 2001 From: AJCM-git <60196617+AJCM-git@users.noreply.github.com> Date: Tue, 7 Jul 2020 15:04:27 -0400 Subject: [PATCH] fixing lobby (#1297) --- .../GameObjects/Components/MagicMirrorBoundUserInterface.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Client/GameObjects/Components/MagicMirrorBoundUserInterface.cs b/Content.Client/GameObjects/Components/MagicMirrorBoundUserInterface.cs index d6fcca29fd..8a6e1667e2 100644 --- a/Content.Client/GameObjects/Components/MagicMirrorBoundUserInterface.cs +++ b/Content.Client/GameObjects/Components/MagicMirrorBoundUserInterface.cs @@ -72,7 +72,7 @@ namespace Content.Client.GameObjects.Components { public override void Populate() { - var humanFacialHairRSIPath = SharedSpriteComponent.TextureRoot / "Mob/human_facial_hair.rsi"; + var humanFacialHairRSIPath = SharedSpriteComponent.TextureRoot / "Mobs/Customization/human_facial_hair.rsi"; var humanFacialHairRSI = ResC.GetResource(humanFacialHairRSIPath).RSI; var styles = HairStyles.FacialHairStylesMap.ToList(); @@ -160,7 +160,7 @@ namespace Content.Client.GameObjects.Components public virtual void Populate() { - var humanHairRSIPath = SharedSpriteComponent.TextureRoot / "Mob/human_hair.rsi"; + var humanHairRSIPath = SharedSpriteComponent.TextureRoot / "Mobs/Customization/human_hair.rsi"; var humanHairRSI = ResC.GetResource(humanHairRSIPath).RSI; var styles = HairStyles.HairStylesMap.ToList();