Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/k3yw/RobustToolbox
Browse files Browse the repository at this point in the history
  • Loading branch information
k3yw committed Dec 25, 2023
2 parents 1f06fca + 4081ebf commit 4ffc12f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
script: |
mkdir benchmark_run_${{ github.sha }}
cd benchmark_run_${{ github.sha }}
git clone https://github.com/space-wizards/RobustToolbox.git repo_dir --recursive
git clone https://github.com/k3yw/RobustToolbox.git repo_dir --recursive
cd repo_dir
git checkout ${{ github.sha }}
cd Robust.Benchmarks
Expand Down
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 4ffc12f

Please sign in to comment.