gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
369 B
13 lines
369 B
#!/bin/bash
|
|
# LGSM fix_arma3.sh function
|
|
# Author: Daniel Gibbs
|
|
# Website: https://gameservermanagers.com
|
|
lgsm_version="301215"
|
|
|
|
# Fixes: server not always creating steam_appid.txt file.
|
|
if [ ! -d "${rootdir}/.local/share/Arma\ 3" ]; then
|
|
fixname="20150 Segmentation fault (core dumped)"
|
|
fn_fix_msg_start
|
|
mkdir -p "${rootdir}/.local/share/Arma\ 3"
|
|
fn_fix_msg_end
|
|
fi
|