Files
crystall-punk-14/Content.Server/_CP14/UniqueLoot/CP14UniqueLootSpawnerComponent.cs
Ed 88c1569266 Unique artifacts (#859)
* unique artifacts

* Update demiplane_keys.yml

* shadow staff

* fixes

* rename solution

* Update CP14UniqueLootSystem.cs

* try fix

* Update CP14UniqueLootSystem.cs
2025-02-08 17:29:29 +03:00

15 lines
399 B
C#

using Content.Shared.Tag;
using Robust.Shared.Prototypes;
namespace Content.Server._CP14.UniqueLoot;
[RegisterComponent]
public sealed partial class CP14UniqueLootSpawnerComponent : Component
{
/// <summary>
/// Used to filter which types of unique loot can be generated. You can leave null to disable filtering.
/// </summary>
[DataField]
public ProtoId<TagPrototype>? Tag;
}