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

Commit

Permalink
Fix regression introduced in #1454 (#1469)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamie Brynes authored Aug 27, 2020
1 parent 64e0814 commit d9d4f8b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ public void SendAndClear(Connection connection, CommandMetaData commandMetaData,
for (var i = 0; i < updates.Count; ++i)
{
ref readonly var update = ref updates[i];
connection.SendComponentUpdate(update.EntityId, update.Update, UpdateParams);
netFrameStats.AddUpdate(update.Update);
connection.SendComponentUpdate(update.EntityId, update.Update, UpdateParams);
}

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

0 comments on commit d9d4f8b

Please sign in to comment.