From 827c3bc63e0999e65603fe5c18db37fac5875918 Mon Sep 17 00:00:00 2001 From: Auto Fix Date: Mon, 11 May 2026 17:48:42 +0400 Subject: [PATCH] fix(functions): use dash in GameFilterTCP/UDP ports (nfqws expects 1024-65535 not colon) --- lib/functions.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/functions.sh b/lib/functions.sh index 08a4ba2..9151e0e 100755 --- a/lib/functions.sh +++ b/lib/functions.sh @@ -76,8 +76,8 @@ load_user_lists() { get_game_filter() { if [[ -f "$SCRIPT_DIR/.service/game_filter_enabled" ]]; then GameFilter="enabled" - GameFilterTCP="1024:65535" - GameFilterUDP="1024:65535" + GameFilterTCP="1024-65535" + GameFilterUDP="1024-65535" else GameFilter="disabled" GameFilterTCP=""