Skip to content

Commit cc27665

Browse files
committed
Update CSharpier
1 parent bb2e4f1 commit cc27665

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"csharpier": {
6-
"version": "1.1.2",
6+
"version": "1.2.0",
77
"commands": [
88
"csharpier"
99
]

RLBotCS/Server/BridgeHandler.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -224,14 +224,14 @@ private static void ConsiderDistributingPacket(BridgeContext context, bool timeA
224224

225225
// While game is paused (or similar), we distribute less often
226226
bool due =
227-
context
228-
is {
229-
ticksSkipped: > MAX_TICK_SKIP,
230-
GameState.MatchPhase: MatchPhase.Replay
231-
or MatchPhase.Paused
232-
or MatchPhase.Ended
233-
or MatchPhase.Inactive
234-
};
227+
context is
228+
{
229+
ticksSkipped: > MAX_TICK_SKIP,
230+
GameState.MatchPhase: MatchPhase.Replay
231+
or MatchPhase.Paused
232+
or MatchPhase.Ended
233+
or MatchPhase.Inactive
234+
};
235235
if (!timeAdvanced && !due)
236236
return;
237237

0 commit comments

Comments
 (0)