mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 06:20:25 +00:00
No exp gain for nursery
I'm not up to date on game mechanics, thanks matt.
This commit is contained in:
parent
5b2bd2ef7e
commit
4276ee1b9d
1 changed files with 2 additions and 2 deletions
|
@ -347,10 +347,10 @@ namespace PKHeX.Core
|
|||
#region Daycare
|
||||
public override int DaycareSeedSize => 16; // 8byte
|
||||
public override int GetDaycareSlotOffset(int loc, int slot) => Daycare.GetParentSlotOffset(slot);
|
||||
public override uint? GetDaycareEXP(int loc, int slot) => (uint)Daycare.EggStepCount;
|
||||
public override uint? GetDaycareEXP(int loc, int slot) => 0;
|
||||
public override bool? IsDaycareOccupied(int loc, int slot) => Daycare.GetDaycareSlotOccupied(slot);
|
||||
public override bool? IsDaycareHasEgg(int loc) => Daycare.IsEggAvailable;
|
||||
public override void SetDaycareEXP(int loc, int slot, uint EXP) => Daycare.EggStepCount = (int)EXP;
|
||||
public override void SetDaycareEXP(int loc, int slot, uint EXP) { }
|
||||
public override void SetDaycareOccupied(int loc, int slot, bool occupied) { }
|
||||
public override void SetDaycareHasEgg(int loc, bool hasEgg) => Daycare.IsEggAvailable = hasEgg;
|
||||
|
||||
|
|
Loading…
Reference in a new issue