From 38f391bb3258feb8bc3cfbfd123d6fecf0765c7a Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 21 Dec 2015 01:50:13 +0100 Subject: [PATCH] Added hurtworld fix Updated description --- functions/fn_install_steamfix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/functions/fn_install_steamfix b/functions/fn_install_steamfix index e977b0f11..c7c205210 100644 --- a/functions/fn_install_steamfix +++ b/functions/fn_install_steamfix @@ -14,10 +14,10 @@ cp -v "${rootdir}/steamcmd/linux32/steamclient.so" "${HOME}/.steam/sdk32/steamcl sleep 1 } -# Gary's Mod Specific +# Server specific fn_libsteamfix(){ echo "" -echo "Applying libsteam.so fix" +echo "Applying libsteam.so and steamclient.so fixes" echo "=================================" sleep 1 if [ "${gamename}" == "Garry's Mod" ]; then @@ -26,6 +26,9 @@ if [ "${gamename}" == "Garry's Mod" ]; then elif [ "${gamename}" == "Serious Sam 3: BFE" ]; then mkdir -pv "${HOME}/.steam/bin32" cp -v "${filesdir}/Bin/libsteam.so" "${HOME}/.steam/bin32/libsteam.so" +elif [ "${gamename}" == "Hurtworld" ]; then + cp -v "${rootdir}/steamcmd/linux32/steamclient.so" "${filesdir}/Hurtworld_Data/Plugins/x86/steamclient.so" + cp -v "${rootdir}/steamcmd/linux32/steamclient.so" "${filesdir}/Hurtworld_Data/Plugins/x86_64/steamclient.so" fi sleep 1 }