mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 06:20:25 +00:00
Allow currentbox to be changed if not overriden
Now allows modifying/deleting 'current' box.
This commit is contained in:
parent
f358c0e4cf
commit
1d27f64235
1 changed files with 1 additions and 1 deletions
|
@ -451,7 +451,7 @@ namespace PKHeX.Core
|
|||
public virtual int BoxSlotCount => 30;
|
||||
public virtual int BoxesUnlocked { get => -1; set { } }
|
||||
public virtual byte[] BoxFlags { get => null; set { } }
|
||||
public virtual int CurrentBox { get => 0; set { } }
|
||||
public virtual int CurrentBox { get; set; }
|
||||
protected int[] LockedSlots = Array.Empty<int>();
|
||||
protected int[] TeamSlots = Array.Empty<int>();
|
||||
protected virtual IList<int>[] SlotPointers => new[] {LockedSlots,TeamSlots};
|
||||
|
|
Loading…
Reference in a new issue