mirror of
https://github.com/the-sane/lug-helper.git
synced 2024-12-28 16:34:21 +00:00
Improve EAC workaround
This commit is contained in:
parent
ae25785a41
commit
717a83a512
@ -1391,9 +1391,9 @@ eac_workaround() {
|
|||||||
eac_dir="$wine_prefix/drive_c/users/$USER/AppData/Roaming/EasyAntiCheat"
|
eac_dir="$wine_prefix/drive_c/users/$USER/AppData/Roaming/EasyAntiCheat"
|
||||||
eac_hosts="127.0.0.1 modules-cdn.eac-prod.on.epicgames.com"
|
eac_hosts="127.0.0.1 modules-cdn.eac-prod.on.epicgames.com"
|
||||||
|
|
||||||
# Check if EAC is installed
|
# Check if EAC workaround is already applied
|
||||||
if [ ! -d "$eac_dir" ]; then
|
if grep "$eac_hosts" /etc/hosts; then
|
||||||
message info "Easy Anti-Cheat does not appear to be installed yet.\nThere is nothing to do!"
|
message info "The Easy Anti-Cheat workaround has already been applied.\nYou're all set!"
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -1417,8 +1417,11 @@ eac_workaround() {
|
|||||||
sudo sh -c "echo $eac_hosts '#Star Citizen EAC workaround' >> /etc/hosts"
|
sudo sh -c "echo $eac_hosts '#Star Citizen EAC workaround' >> /etc/hosts"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
debug_print continue "Deleting $eac_dir..."
|
# Delete the EAC directory if it exists
|
||||||
rm -r "$eac_dir"
|
if [ -d "$eac_dir" ]; then
|
||||||
|
debug_print continue "Deleting $eac_dir..."
|
||||||
|
rm -r "$eac_dir"
|
||||||
|
fi
|
||||||
|
|
||||||
message info "Easy Anti-Cheat workaround has been deployed!"
|
message info "Easy Anti-Cheat workaround has been deployed!"
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user