mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
Add gen4 current box
This commit is contained in:
parent
d2342ba965
commit
ca139cf7e4
1 changed files with 1 additions and 1 deletions
|
@ -531,7 +531,7 @@ namespace PKHeX
|
|||
public override int SecondsToFame { get { return BitConverter.ToInt32(Data, AdventureInfo + 0x3C); } set { BitConverter.GetBytes(value).CopyTo(Data, AdventureInfo + 0x3C); } }
|
||||
|
||||
// Storage
|
||||
public int UnlockedBoxes
|
||||
public override int CurrentBox
|
||||
{
|
||||
get { return Data[Box - 4]; }
|
||||
set { Data[Box - 4] = (byte)value; }
|
||||
|
|
Loading…
Reference in a new issue