From f10a7400a6eff68363eeae051140cb4e87582055 Mon Sep 17 00:00:00 2001 From: Kaphotics Date: Wed, 23 Nov 2016 12:26:14 -0800 Subject: [PATCH] Fix Festival Coins saving Used the BP cap of 9999, needed to use the FC cap of 9,999,999. Copypasting is baddd --- PKHeX/Subforms/Save Editors/Gen7/SAV_Trainer7.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PKHeX/Subforms/Save Editors/Gen7/SAV_Trainer7.cs b/PKHeX/Subforms/Save Editors/Gen7/SAV_Trainer7.cs index 79f76bb74..a0afaf487 100644 --- a/PKHeX/Subforms/Save Editors/Gen7/SAV_Trainer7.cs +++ b/PKHeX/Subforms/Save Editors/Gen7/SAV_Trainer7.cs @@ -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); } } -} \ No newline at end of file +}