diff --git a/PKHeX/Saves/SAV7.cs b/PKHeX/Saves/SAV7.cs index ddd9c67c5..8e27d7cac 100644 --- a/PKHeX/Saves/SAV7.cs +++ b/PKHeX/Saves/SAV7.cs @@ -847,7 +847,7 @@ public override void setDaycareRNGSeed(int loc, string seed) .Where(x => x % 2 == 0) .Reverse() .Select(x => Convert.ToByte(seed.Substring(x, 2), 16)) - .Reverse().ToArray().CopyTo(Data, Daycare + 0x1DC); + .ToArray().CopyTo(Data, Daycare + 0x1DC); } public override void setDaycareHasEgg(int loc, bool hasEgg) {