Remove redundant read-only VV from datafields (#12626)
This commit is contained in:
@@ -10,7 +10,7 @@ namespace Content.Server.NodeContainer
|
||||
public sealed class NodeContainerComponent : Component
|
||||
{
|
||||
//HACK: THIS BEING readOnly IS A FILTHY HACK AND I HATE IT --moony
|
||||
[DataField("nodes", readOnly: true)] [ViewVariables] public Dictionary<string, Node> Nodes { get; } = new();
|
||||
[DataField("nodes", readOnly: true)] public Dictionary<string, Node> Nodes { get; } = new();
|
||||
|
||||
[DataField("examinable")] public bool Examinable = false;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user