fix_arma3.sh 552 B

12345678910111213141516
  1. #!/bin/bash
  2. # LGSM fix_arma3.sh function
  3. # Author: Daniel Gibbs
  4. # Website: https://gameservermanagers.com
  5. # Description: Resolves an issue with ARMA3.
  6. local modulename="Fix"
  7. local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
  8. # Fixes: 20150 Segmentation fault (core dumped) error.
  9. if [ ! -d "${HOME}/.local/share/Arma 3" ]||[ ! -d "${HOME}/.local/share/Arma 3 - Other Profiles" ]; then
  10. fixname="20150 Segmentation fault (core dumped)"
  11. fn_fix_msg_start
  12. mkdir -p "${HOME}/.local/share/Arma 3 - Other Profiles"
  13. fn_fix_msg_end
  14. fi