mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
Set party format values always
This commit is contained in:
parent
edce01a857
commit
c268d5ad05
1 changed files with 1 additions and 0 deletions
|
@ -148,6 +148,7 @@ namespace PKHeX.Core
|
|||
public override bool IsSlotInBattleTeam(int box, int slot) => Storage.IsSlotInBattleTeam(box, slot);
|
||||
public override bool IsSlotLocked(int box, int slot) => Storage.IsSlotLocked(box, slot);
|
||||
protected override bool IsSlotOverwriteProtected(int box, int slot) => false;
|
||||
protected override void SetPartyValues(PKM pkm, bool isParty) => base.SetPartyValues(pkm, true);
|
||||
|
||||
public override string GetBoxName(int box) => $"Box {box + 1}";
|
||||
public override void SetBoxName(int box, string value) { }
|
||||
|
|
Loading…
Reference in a new issue