From 7ec7ca312dc09c9670ba69877c27e8220780a571 Mon Sep 17 00:00:00 2001 From: Kurt Date: Sat, 9 Jun 2018 10:07:35 -0700 Subject: [PATCH] Don't increment cell count for usum on giveall show cell total for usum --- PKHeX.WinForms/Subforms/Save Editors/Gen7/SAV_ZygardeCell.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/PKHeX.WinForms/Subforms/Save Editors/Gen7/SAV_ZygardeCell.cs b/PKHeX.WinForms/Subforms/Save Editors/Gen7/SAV_ZygardeCell.cs index 74ae83fb1..a78529a17 100644 --- a/PKHeX.WinForms/Subforms/Save Editors/Gen7/SAV_ZygardeCell.cs +++ b/PKHeX.WinForms/Subforms/Save Editors/Gen7/SAV_ZygardeCell.cs @@ -43,8 +43,6 @@ namespace PKHeX.WinForms dgv.Rows[i].Cells[1].Value = locations[i]; dgv.Rows[i].Cells[2].Value = states[cells[i]]; } - if (SAV.USUM) - L_Cells.Visible = NUD_Cells.Visible = false; } private const int cellstotal = 161; @@ -91,7 +89,8 @@ namespace PKHeX.WinForms } NUD_Collected.Value += added; - NUD_Cells.Value += added; + if (!SAV.USUM) + NUD_Cells.Value += added; System.Media.SystemSounds.Asterisk.Play(); }