mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-06-03 09:04:11 -05:00
Fix Festival Coins saving
Used the BP cap of 9999, needed to use the FC cap of 9,999,999. Copypasting is baddd
This commit is contained in:
parent
b71df70f34
commit
f10a7400a6
|
|
@ -123,7 +123,7 @@ private void getTextBoxes()
|
|||
CAL_HoFTime.Value = new DateTime(2000, 1, 1).AddSeconds(SAV.SecondsToFame % 86400);
|
||||
|
||||
NUD_BP.Value = Math.Min(NUD_BP.Maximum, SAV.BP);
|
||||
NUD_FC.Value = Math.Min(NUD_BP.Maximum, SAV.FestaCoins);
|
||||
NUD_FC.Value = Math.Min(NUD_FC.Maximum, SAV.FestaCoins);
|
||||
}
|
||||
private void save()
|
||||
{
|
||||
|
|
@ -246,4 +246,4 @@ private void B_Fashion_Click(object sender, EventArgs e)
|
|||
data.CopyTo(SAV.Data, SAV.Fashion);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user