Commit 58acb47d authored by nanahira's avatar nanahira

fix

parent 83ad5777
......@@ -1577,7 +1577,7 @@ public class DeckManager : ServantWithCardDescription
}
public static string convertDeckToBase64(YGOSharp.Deck deck) {
List<byte> array_list = List<byte>();
List<byte> array_list = new List<byte>();
writeInt32ToList(array_list, deck.Main.Count + deck.Extra.Count);
writeInt32ToList(array_list, deck.Side.Count);
for (int i = 0; i < deck.Main.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