Lint more stuff (#19307)
This commit is contained in:
@@ -1,14 +1,15 @@
|
||||
using Content.Shared.Preferences;
|
||||
using Robust.Shared.Prototypes;
|
||||
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
|
||||
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Dictionary;
|
||||
|
||||
namespace Content.Shared.Roles
|
||||
{
|
||||
[Prototype("startingGear")]
|
||||
public sealed class StartingGearPrototype : IPrototype
|
||||
{
|
||||
// TODO: Custom TypeSerializer for dictionary value prototype IDs
|
||||
[DataField("equipment")] private Dictionary<string, string> _equipment = new();
|
||||
[DataField("equipment", customTypeSerializer: typeof(PrototypeIdValueDictionarySerializer<string, EntityPrototype>))]
|
||||
private Dictionary<string, string> _equipment = new();
|
||||
|
||||
/// <summary>
|
||||
/// if empty, there is no skirt override - instead the uniform provided in equipment is added.
|
||||
|
||||
Reference in New Issue
Block a user