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:
Kaphotics 2016-11-23 12:26:14 -08:00 committed by GitHub
parent b71df70f34
commit f10a7400a6

View File

@ -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);
}
}
}
}