Commit 728ebbdc authored by mercury233's avatar mercury233

update to 1.033.C

MSG_ANNOUNCE_CARD_FILTER is not implemented
parent 263f938e
...@@ -665,7 +665,7 @@ namespace WindBot.Game ...@@ -665,7 +665,7 @@ namespace WindBot.Game
{ {
packet.ReadByte(); // player packet.ReadByte(); // player
int type = packet.ReadInt16(); int type = packet.ReadInt16();
int quantity = packet.ReadByte(); int quantity = packet.ReadInt16();
IList<ClientCard> cards = new List<ClientCard>(); IList<ClientCard> cards = new List<ClientCard>();
IList<int> counters = new List<int>(); IList<int> counters = new List<int>();
...@@ -676,7 +676,7 @@ namespace WindBot.Game ...@@ -676,7 +676,7 @@ namespace WindBot.Game
int player = GetLocalPlayer(packet.ReadByte()); int player = GetLocalPlayer(packet.ReadByte());
CardLocation loc = (CardLocation) packet.ReadByte(); CardLocation loc = (CardLocation) packet.ReadByte();
int seq = packet.ReadByte(); int seq = packet.ReadByte();
int num = packet.ReadByte(); int num = packet.ReadInt16();
cards.Add(_duel.GetCard(player, loc, seq)); cards.Add(_duel.GetCard(player, loc, seq));
counters.Add(num); counters.Add(num);
} }
......
...@@ -20,7 +20,7 @@ namespace WindBot ...@@ -20,7 +20,7 @@ namespace WindBot
Host = "127.0.0.1"; Host = "127.0.0.1";
Port = 7911; Port = 7911;
HostInfo = ""; HostInfo = "";
Version = 0x133B; Version = 0x133C;
} }
} }
} }
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