Commit 0957a423 authored by mercury233's avatar mercury233

update 0x1344: ShuffleSetCard

parent e3bc311b
...@@ -1104,6 +1104,7 @@ namespace Percy ...@@ -1104,6 +1104,7 @@ namespace Percy
move(1); move(1);
break; break;
case GameMessage.ShuffleSetCard: case GameMessage.ShuffleSetCard:
move(1);
move(move(1) * 8); move(move(1) * 8);
break; break;
case GameMessage.ReverseDeck: case GameMessage.ReverseDeck:
......
...@@ -3,7 +3,7 @@ using System.Collections.Generic; ...@@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.IO; using System.IO;
public static class Config public static class Config
{ {
public static uint ClientVersion = 0x1343; public static uint ClientVersion = 0x1344;
class oneString class oneString
{ {
......
...@@ -2312,6 +2312,7 @@ public class Ocgcore : ServantWithCardDescription ...@@ -2312,6 +2312,7 @@ public class Ocgcore : ServantWithCardDescription
} }
break; break;
case GameMessage.ShuffleSetCard: case GameMessage.ShuffleSetCard:
location = r.ReadByte();
count = r.ReadByte(); count = r.ReadByte();
List<GPS> gpss = new List<GPS>(); List<GPS> gpss = new List<GPS>();
for (int i = 0; i < count; i++) for (int i = 0; i < count; i++)
......
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