mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-26 05:50:22 +00:00
CXD location on hover
CXD is a stored version and does not contain others
This commit is contained in:
parent
5f4cf2af29
commit
d222d4bb2e
1 changed files with 1 additions and 1 deletions
|
@ -786,7 +786,7 @@ public sealed class GameStrings : IBasicStrings
|
|||
public ILocationSet? GetLocations(byte generation, GameVersion version) => generation switch
|
||||
{
|
||||
2 => Gen2,
|
||||
3 => GameVersion.CXD.Contains(version) ? CXD : Gen3,
|
||||
3 => version is (GameVersion.COLO or GameVersion.XD or GameVersion.CXD) ? CXD : Gen3,
|
||||
4 => Gen4,
|
||||
5 => Gen5,
|
||||
6 => Gen6,
|
||||
|
|
Loading…
Reference in a new issue