From 80db33be07e6c9a62cfb85ad2a0806dfeb9a2d41 Mon Sep 17 00:00:00 2001 From: the-sane <3657071+the-sane@users.noreply.github.com> Date: Fri, 21 Oct 2022 23:58:52 -0400 Subject: [PATCH] Add EAC workaround to command line arguments --- lug-helper.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lug-helper.sh b/lug-helper.sh index 94bca61..461e15f 100755 --- a/lug-helper.sh +++ b/lug-helper.sh @@ -1909,6 +1909,7 @@ if [ "$#" -gt 0 ]; then Usage: lug-helper -p, --preflight-check Run system optimization checks -i, --install Install Star Citizen + -e, --eac Deploy Easy Anti-Cheat Workaround -m, --manage-runners Install or remove Lutris runners -k, --manage-dxvk Install or remove DXVK versions -u, --delete-user-folder Delete Star Citizen USER folder, preserving keybinds @@ -1928,6 +1929,9 @@ Usage: lug-helper --install | -i ) cargs+=("install_game") ;; + --eac | -e ) + cargs+=("eac_workaround") + ;; --manage-runners | -m ) cargs+=("runner_manage") ;;