ok saving pipes now works (#4906)

* ok saving pipes now works

* EW HACKS
This commit is contained in:
moonheart08
2021-10-16 15:40:21 -05:00
committed by GitHub
parent 23b0b0d76a
commit f69575e15a
2 changed files with 4 additions and 2 deletions

View File

@@ -19,7 +19,8 @@ namespace Content.Server.NodeContainer
{
public override string Name => "NodeContainer";
[DataField("nodes")] [ViewVariables] public Dictionary<string, Node> Nodes { get; } = new();
//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("examinable")] private bool _examinable = false;