mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
Fix auto resizing to party size
This commit is contained in:
parent
d2dbc9f2ed
commit
9438114fb7
1 changed files with 1 additions and 1 deletions
|
@ -416,7 +416,7 @@ namespace PKHeX
|
|||
};
|
||||
internal static byte[] shuffleArray(byte[] data, uint sv)
|
||||
{
|
||||
byte[] sdata = new byte[260];
|
||||
byte[] sdata = new byte[data.Length];
|
||||
Array.Copy(data, sdata, 8); // Copy unshuffled bytes
|
||||
|
||||
// Shuffle Away!
|
||||
|
|
Loading…
Reference in a new issue