Update WB8.cs

This commit is contained in:
Kurt 2021-11-26 19:06:36 -08:00
parent 66a2046e5a
commit d7ed6713c5

View file

@ -434,7 +434,7 @@ namespace PKHeX.Core
{
// give random valid game
var rnd = Util.Rand;
do { pk.Version = (int)GameVersion.SW + rnd.Next(2); }
do { pk.Version = (int)GameVersion.BD + rnd.Next(2); }
while (!CanBeReceivedByVersion(pk.Version));
}