Files
wwdpublic/Content.Server/Humanoid/Components/RandomHumanoidAppearanceComponent.cs
Kutosss 362fce56d6 Revert "Friday31" (#869)
Revert "Friday31 (#868)"

This reverts commit 10a2b918fd.
2025-11-03 17:36:11 +03:00

15 lines
503 B
C#

using Content.Shared.Humanoid.Prototypes;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set;
namespace Content.Server.CharacterAppearance.Components;
[RegisterComponent]
public sealed partial class RandomHumanoidAppearanceComponent : Component
{
[DataField("randomizeName")] public bool RandomizeName = true;
/// <summary>
/// After randomizing, sets the hair style to this, if possible
/// </summary>
[DataField] public string? Hair = null;
}