Skip to content
This repository was archived by the owner on Jan 18, 2022. It is now read-only.

Commit d9d4f8b

Browse files
author
Jamie Brynes
authored
Fix regression introduced in #1454 (#1469)
1 parent 64e0814 commit d9d4f8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

workers/unity/Packages/io.improbable.gdk.core/Worker/SerializedMessagesToSend.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ public void SendAndClear(Connection connection, CommandMetaData commandMetaData,
131131
for (var i = 0; i < updates.Count; ++i)
132132
{
133133
ref readonly var update = ref updates[i];
134-
connection.SendComponentUpdate(update.EntityId, update.Update, UpdateParams);
135134
netFrameStats.AddUpdate(update.Update);
135+
connection.SendComponentUpdate(update.EntityId, update.Update, UpdateParams);
136136
}
137137

138138
for (var i = 0; i < requests.Count; ++i)

0 commit comments

Comments
 (0)