fix.sh 471 B

123456789101112131415161718192021
  1. #!/bin/bash
  2. # LGSM fix.sh function
  3. # Author: Daniel Gibbs
  4. # Website: http://gameservermanagers.com
  5. lgsm_version="291215"
  6. # Description: Overall function for managing fixes.
  7. # Runs functions that will fix an issue.
  8. if [ ! -z "${appid}" ]; then
  9. fix_steamcmd.sh
  10. fi
  11. if [ "${gamename}" == "Counter Strike: Global Offensive" ]; then
  12. startfix=1
  13. fix_csgo.sh
  14. elif [ "${gamename}" == "Insurgency" ]; then
  15. fix_ins.sh
  16. elif [ "${gamename}" == "ARMA 3" ]; then
  17. fix_arma3.sh
  18. fi