From efbfe7be29aa0174703716c0bfd94d1d67094442 Mon Sep 17 00:00:00 2001 From: Conni243 <79007910+StealthSteeler@users.noreply.github.com> Date: Tue, 5 May 2026 19:20:57 +0200 Subject: [PATCH] Allow for No Custom Tracks I don't know why this isn't already an option --- PulsarPackCreator/Cups.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);