mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 05:48:44 +00:00
fix pokewalker course flag set
07FF_FFFF not 7FFF_FFFF
This commit is contained in:
parent
9457db9059
commit
9e2bd8f64a
1 changed files with 1 additions and 1 deletions
|
@ -1155,7 +1155,7 @@ namespace PKHeX.Core
|
|||
|
||||
// Pokewalker
|
||||
private int OFS_WALKER = int.MinValue;
|
||||
public void PokewalkerCoursesUnlockAll() => SetData(BitConverter.GetBytes((uint)0x7FFFFFFF), OFS_WALKER);
|
||||
public void PokewalkerCoursesUnlockAll() => SetData(BitConverter.GetBytes((uint)0x07FF_FFFF), OFS_WALKER);
|
||||
public bool[] PokewalkerCoursesUnlocked
|
||||
{
|
||||
get
|
||||
|
|
Loading…
Add table
Reference in a new issue