diff --git a/PulsarPackCreator/Cups.cs b/PulsarPackCreator/Cups.cs index 86ade3c6..2e6bfdd3 100644 --- a/PulsarPackCreator/Cups.cs +++ b/PulsarPackCreator/Cups.cs @@ -274,9 +274,9 @@ public Cup(PulsarGame.CupV1 raw) : this(0) private void OnCupCountChange(object sender, TextChangedEventArgs e) { TextBox box = sender as TextBox; - if (box.Text == "" || box.Text == "0") + if (box.Text == "") { - box.Text = "1"; + box.Text = "0"; return; } ushort newCount = ushort.Parse(box.Text);