From f33616845dc5ac8a11cea8fc9dc64472d835351e Mon Sep 17 00:00:00 2001 From: the-sane <3657071+the-sane@users.noreply.github.com> Date: Thu, 21 Aug 2025 19:51:19 -0400 Subject: [PATCH] Remove wine check from install and preflight --- lug-helper.sh | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/lug-helper.sh b/lug-helper.sh index fb77b3c..5813a23 100755 --- a/lug-helper.sh +++ b/lug-helper.sh @@ -778,7 +778,7 @@ preflight_check() { fi # Call the optimization functions to perform the checks - wine_check + #wine_check memory_check avx_check mapcount_check @@ -2223,11 +2223,6 @@ reset_helper() { # MARK: install_game_wine() # Install the game with Wine install_game_wine() { - # Double check that wine is installed - if [ ! -x "$(command -v wine)" ]; then - message error "Wine does not appear to be installed.\nPlease refer to our Quick Start Guide:\n$lug_wiki" - return 1 - fi # Check if the install script exists if [ ! -f "$wine_launch_script" ]; then message error "Game launch script not found! Unable to proceed.\n\n$wine_launch_script\n\nIt is included in our official releases here:\n$releases_url"