Commit d44136cf authored by SherryChaos's avatar SherryChaos

fix synchro bug

parent ef309dba
......@@ -4388,9 +4388,12 @@ namespace MDPro3
if (sendable)
{
binaryMaster = new BinaryMaster();
binaryMaster.writer.Write(cardsInSelection.Count);
for (var i = 0; i < cardsInSelection.Count; i++)
binaryMaster.writer.Write(i);
binaryMaster.writer.Write((byte)cardsInSelection.Count);
foreach (var c in cardsMustBeSelected)
binaryMaster.writer.Write((byte)c.selectPtr);
foreach (var c in cardsInSelection)
if (!cardsMustBeSelected.Contains(c))
binaryMaster.writer.Write((byte)c.selectPtr);
SendReturn(binaryMaster.Get());
break;
}
......
......@@ -134,8 +134,9 @@ PlayerSettings:
16:10: 1
16:9: 1
Others: 1
bundleVersion: 1.0.5
preloadedAssets: []
bundleVersion: 1.0.5.1
preloadedAssets:
- {fileID: 11400000, guid: 5fb02d2098f52054b89ce4a9f63ba9ee, type: 2}
metroInputSource: 0
wsaTransparentSwapchain: 0
m_HolographicPauseOnTrackingLoss: 1
......
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