mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-09-12 03:36:24 -05:00
fix pokewalker course flag set
07FF_FFFF not 7FFF_FFFF
This commit is contained in:
@@ -1155,7 +1155,7 @@ public int[] MunchlaxTrees
|
||||
|
||||
// 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
|
||||
|
||||
Reference in New Issue
Block a user