Commit fc8ac407 authored by mercury233's avatar mercury233

test fix

parent ed5ee4b9
...@@ -447,7 +447,6 @@ namespace WindBot.Game ...@@ -447,7 +447,6 @@ namespace WindBot.Game
{ {
int player = GetLocalPlayer(packet.ReadByte()); int player = GetLocalPlayer(packet.ReadByte());
CardLocation loc = (CardLocation)packet.ReadByte(); CardLocation loc = (CardLocation)packet.ReadByte();
IList<ClientCard> cards = null; IList<ClientCard> cards = null;
switch (loc) switch (loc)
{ {
...@@ -478,9 +477,9 @@ namespace WindBot.Game ...@@ -478,9 +477,9 @@ namespace WindBot.Game
foreach (ClientCard card in cards) foreach (ClientCard card in cards)
{ {
int len = packet.ReadInt32(); int len = packet.ReadInt32();
if (len == 4) continue;
long pos = packet.BaseStream.Position; long pos = packet.BaseStream.Position;
card.Update(packet, _duel); if (len > 8)
card.Update(packet, _duel);
packet.BaseStream.Position = pos + len - 4; packet.BaseStream.Position = pos + len - 4;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment