mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-09-08 21:45:56 -05:00
Fix gen3 wc3 random version get
recently removed gameversion value segregation to 100+; just sanity check <=CXD #1460
This commit is contained in:
@@ -168,7 +168,7 @@ private static int GetSafeLanguage(int hatchLang, int supplied)
|
||||
}
|
||||
private static int GetRandomVersion(int version)
|
||||
{
|
||||
if (version < 100 && version > 0) // single game
|
||||
if (version <= 15 && version > 0) // single game
|
||||
return version;
|
||||
|
||||
int rand = Util.Rand.Next(1);
|
||||
|
||||
Reference in New Issue
Block a user