Skip to content

Commit

Permalink
Fixed receive queue being given the wrong net message, causing the re…
Browse files Browse the repository at this point in the history
…st of the ReadIds message to be read incorrectly
  • Loading branch information
evilfactory committed Jul 2, 2023
1 parent c9c6ca4 commit 90e2105
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ private void ReadIds(IReadMessage netMessage)
{
if (netReceives.ContainsKey(name))
{
netReceives[name](netMessage, null);
netReceives[name](queueMessage, null);
}
}
}
Expand Down

0 comments on commit 90e2105

Please sign in to comment.