diff --git a/services/wolf.sh b/services/wolf.sh index 0d15391..fd203a8 100644 --- a/services/wolf.sh +++ b/services/wolf.sh @@ -3415,14 +3415,17 @@ print(next(iter(ids)) if len(ids) == 1 else '') if [ -n "$ACTIVE_CLIENT_ID" ]; then CLIENT_ID="$ACTIVE_CLIENT_ID" echo "" - echo "Exactly one client is actively streaming right now — using that one." + echo "Exactly one Moonlight session (device/TV) is actively streaming right" + echo "now — using that one. (This is about which SCREEN/DEVICE you're" + echo "configuring, not how many controllers are plugged into it — that's" + echo "the next question.)" elif [ "${#CLIENT_IDS[@]}" -eq 1 ]; then CLIENT_ID="${CLIENT_IDS[0]}" echo "" - echo "Only one paired client — using it." + echo "Only one paired Moonlight device — using it." else echo "" - read -r -p "Which client [1-${#CLIENT_IDS[@]}]: " PICK + read -r -p "Which Moonlight session/device [1-${#CLIENT_IDS[@]}]: " PICK if ! [[ "$PICK" =~ ^[0-9]+$ ]] || [ "$PICK" -lt 1 ] || [ "$PICK" -gt "${#CLIENT_IDS[@]}" ]; then echo "Invalid selection." exit 1 @@ -3431,7 +3434,10 @@ print(next(iter(ids)) if len(ids) == 1 else '') fi echo "" - read -r -p "How many controller slots to force a type for [2]: " NSLOTS + echo "Now, separately: how many physical GAMEPADS/CONTROLLERS do you have" + echo "connected to that device right now (this tool can't detect that —" + echo "count your own controllers)?" + read -r -p "Number of controllers [2]: " NSLOTS NSLOTS="${NSLOTS:-2}" if ! [[ "$NSLOTS" =~ ^[0-9]+$ ]] || [ "$NSLOTS" -lt 1 ]; then echo "Invalid number."