From 1386b8ca2d528aaf08aaa59b0c116c1e1e83c5a0 Mon Sep 17 00:00:00 2001 From: Swept Date: Tue, 21 Jul 2020 23:37:46 +0000 Subject: [PATCH] Fixes Jumpskirts (#1442) --- .../GameObjects/Components/Clothing/ClothingComponent.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Client/GameObjects/Components/Clothing/ClothingComponent.cs b/Content.Client/GameObjects/Components/Clothing/ClothingComponent.cs index 0a06ab4203..75f8ca183b 100644 --- a/Content.Client/GameObjects/Components/Clothing/ClothingComponent.cs +++ b/Content.Client/GameObjects/Components/Clothing/ClothingComponent.cs @@ -32,6 +32,7 @@ namespace Content.Client.GameObjects.Components.Clothing base.ExposeData(serializer); serializer.DataField(ref _femaleMask, "femaleMask", FemaleClothingMask.UniformFull); + serializer.DataField(this, p => p.ClothingEquippedPrefix, "ClothingPrefix", null); } public (RSI rsi, RSI.StateId stateId)? GetEquippedStateInfo(EquipmentSlotDefines.SlotFlags slot)