Skip to content

Commit

Permalink
Fix OnSelectCounter
Browse files Browse the repository at this point in the history
  • Loading branch information
edo9300 committed Aug 12, 2023
1 parent 2a5c6a2 commit f72457a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Game/GameBehavior.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1212,7 +1212,7 @@ private void OnSelectCounter(BinaryReader packet)

IList<ClientCard> cards = new List<ClientCard>();
IList<int> counters = new List<int>();
int count = packet.ReadByte();
int count = packet.ReadInt32();
for (int i = 0; i < count; ++i)
{
packet.ReadInt32(); // card id
Expand Down

0 comments on commit f72457a

Please sign in to comment.