Skip to content

Commit

Permalink
Why wasn't it suppressed or checked? Hope it wont break something in …
Browse files Browse the repository at this point in the history
…future lol
  • Loading branch information
k3yw committed Dec 25, 2023
1 parent 4a41be4 commit 4081ebf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Robust.Shared/ViewVariables/MsgViewVariablesPath.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ public override void ReadFromBuffer(NetIncomingMessage buffer, IRobustSerializer
public override void WriteToBuffer(NetOutgoingMessage buffer, IRobustSerializer serializer)
{
base.WriteToBuffer(buffer, serializer);
#pragma warning disable CS8604 // Possible null reference argument.
buffer.Write(Value);
#pragma warning restore CS8604 // Possible null reference argument.
}
}

Expand Down

0 comments on commit 4081ebf

Please sign in to comment.