From 9b572e02e9ffe97c1a992aefc33016e6fcba77cb Mon Sep 17 00:00:00 2001 From: zarazaex69 Date: Mon, 11 May 2026 14:40:51 +0300 Subject: [PATCH] fix: cnc.sh default auth wbstream (was telemost) --- script/cnc.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/script/cnc.sh b/script/cnc.sh index c126adc..208dadc 100755 --- a/script/cnc.sh +++ b/script/cnc.sh @@ -71,17 +71,17 @@ echo "Select auth:" echo " 1) telemost" echo " 2) jazz" echo " 3) wbstream" -read -p "Enter choice [1-3, default: 1]: " CARRIER_CHOICE +read -p "Enter choice [1-3, default: 3]: " CARRIER_CHOICE case "$CARRIER_CHOICE" in + 1) + CARRIER="telemost" + ;; 2) CARRIER="jazz" ;; - 3) - CARRIER="wbstream" - ;; *) - CARRIER="telemost" + CARRIER="wbstream" ;; esac