From 537748dc89f18d1516fe198c735e3c795128e674 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 27 Dec 2015 23:43:00 +0000 Subject: [PATCH] Corrected incorrectly named functions --- functions/core_getopt.sh | 26 +++++++++++++------------- functions/fix_csgo.sh | 4 ++-- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/functions/core_getopt.sh b/functions/core_getopt.sh index 593c7bd09..93b0a005c 100644 --- a/functions/core_getopt.sh +++ b/functions/core_getopt.sh @@ -6,7 +6,7 @@ lgsm_version="271215" # Description: getopt arguments. -core_getopt.sh_generic(){ +fn_getopt_generic(){ case "$getopt" in st|start) command_start.sh;; @@ -70,7 +70,7 @@ case "$getopt" in exit } -core_getopt.sh_teamspeak3(){ +fn_getopt_teamspeak3(){ case "$getopt" in st|start) command_start.sh;; @@ -121,7 +121,7 @@ case "$getopt" in exit } -core_getopt.sh_mumble(){ +fn_getopt_mumble(){ case "$getopt" in st|start) command_start.sh;; @@ -166,7 +166,7 @@ case "$getopt" in exit } -core_getopt.sh_gmodserver(){ +fn_getopt_gmodserver(){ case "$getopt" in st|start) command_start.sh;; @@ -233,7 +233,7 @@ case "$getopt" in exit } -core_getopt.sh_unreal(){ +fn_getopt_unreal(){ case "$getopt" in st|start) command_start.sh;; @@ -288,7 +288,7 @@ exit } -core_getopt.sh_unreal2(){ +fn_getopt_unreal2(){ case "$getopt" in st|start) command_start.sh;; @@ -356,7 +356,7 @@ exit } -core_getopt.sh_ut2k4(){ +fn_getopt_ut2k4(){ case "$getopt" in st|start) command_start.sh;; @@ -411,17 +411,17 @@ exit } if [ "${gamename}" == "Mumble" ]; then - core_getopt.sh_mumble + fn_getopt__mumble elif [ "${gamename}" == "Teamspeak 3" ]; then - core_getopt.sh_teamspeak3 + fn_getopt_teamspeak3 elif [ "${engine}" == "unreal2" ]; then if [ "${gamename}" == "Unreal Tournament 2004" ]; then - core_getopt.sh_ut2k4 + fn_getopt_ut2k4 else - core_getopt.sh_unreal2 + fn_getopt_unreal2 fi elif [ "${engine}" == "unreal" ]; then - core_getopt.sh_unreal + fn_getopt_unreal else - core_getopt.sh_generic + fn_getopt_generic fi \ No newline at end of file diff --git a/functions/fix_csgo.sh b/functions/fix_csgo.sh index 1a794404f..488149b0f 100644 --- a/functions/fix_csgo.sh +++ b/functions/fix_csgo.sh @@ -19,7 +19,7 @@ if [ ! -f "${filesdir}/steam_appid.txt" ]; then fi } -fix_csgo.shes(){ +fn_csgofixes(){ # Fixes the following error: # Error parsing BotProfile.db - unknown attribute 'Rank". if ! grep -q "//Rank" "${systemdir}/botprofile.db" > /dev/null 2>&1; then @@ -84,5 +84,5 @@ fi if [ ! -z "${startfix}" ]; then fn_csgoappfix else - fix_csgo.shes + fn_csgofixes fi \ No newline at end of file