diff --git a/lgsm/functions/check_deps.sh b/lgsm/functions/check_deps.sh index 1635b65c4..607cc2f1f 100644 --- a/lgsm/functions/check_deps.sh +++ b/lgsm/functions/check_deps.sh @@ -183,6 +183,9 @@ if [ -n "$(command -v dpkg-query 2>/dev/null)" ]; then # Brainbread 2 ,Don't Starve Together & Team Fortress 2 elif [ "${gamename}" == "Brainbread 2" ]||[ "${gamename}" == "Don't Starve Together" ]||[ "${gamename}" == "Team Fortress 2" ]; then array_deps_required+=( libcurl4-gnutls-dev:i386 ) + if [ "${gamename}" == "Team Fortress 2" ]; then + array_deps_required+=( libtcmalloc-minimal4:i386 ) + fi # Battlefield: 1942 elif [ "${gamename}" == "Battlefield: 1942" ]; then array_deps_required+=( libncurses5:i386 ) @@ -258,6 +261,9 @@ elif [ -n "$(command -v yum 2>/dev/null)" ]; then # Brainbread 2, Don't Starve Together & Team Fortress 2 elif [ "${gamename}" == "Brainbread 2" ]||[ "${gamename}" == "Don't Starve Together" ]||[ "${gamename}" == "Team Fortress 2" ]; then array_deps_required+=( libcurl.i686 ) + if [ "${gamename}" == "Team Fortress 2" ]; then + array_deps_required+=( gperftools-libs.i686 ) + fi # Battlefield: 1942 elif [ "${gamename}" == "Battlefield: 1942" ]; then array_deps_required+=( ncurses-libs.i686 )