Fix prototypes so they pass analyzer checks (#35435)
This commit is contained in:
@@ -8,7 +8,7 @@ namespace Content.Shared.Procedural;
|
||||
[Prototype("dungeonRoom")]
|
||||
public sealed partial class DungeonRoomPrototype : IPrototype
|
||||
{
|
||||
[IdDataField] public string ID { get; } = string.Empty;
|
||||
[IdDataField] public string ID { get; private set; } = string.Empty;
|
||||
|
||||
[ViewVariables(VVAccess.ReadWrite), DataField]
|
||||
public List<ProtoId<TagPrototype>> Tags = new();
|
||||
|
||||
Reference in New Issue
Block a user