Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dgibbs64 committed Oct 10, 2023
1 parent 07924ec commit ade64fe
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 17 deletions.
1 change: 0 additions & 1 deletion lgsm/modules/command_monitor.sh
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,6 @@ fn_monitor_check_session() {
fn_print_dots "Checking session: "
fn_print_checking_eol
fn_script_log_info "Checking session: CHECKING"
fn_sleep_time_1
# Tmux session width and height needs to be reviewed as may no longer be required.
sessionwidth="80"
sessionheight="23"
Expand Down
20 changes: 10 additions & 10 deletions lgsm/modules/core_messages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -483,56 +483,56 @@ fn_print_info_eol_nl() {
# QUERYING
fn_print_querying_eol() {
echo -en "${cyan}QUERYING${default}"
fn_sleep_time
fn_sleep_time_1
}

fn_print_querying_eol_nl() {
echo -e "${cyan}QUERYING${default}"
fn_sleep_time
fn_sleep_time_1
}

# CHECKING
fn_print_checking_eol() {
echo -en "${cyan}CHECKING${default}"
fn_sleep_time
fn_sleep_time_1
}

fn_print_checking_eol_nl() {
echo -e "${cyan}CHECKING${default}"
fn_sleep_time
fn_sleep_time_1
}

# DELAY
fn_print_delay_eol() {
echo -en "${green}DELAY${default}"
fn_sleep_time
fn_sleep_time_1
}

fn_print_delay_eol_nl() {
echo -e "${green}DELAY${default}"
fn_sleep_time
fn_sleep_time_1
}

# CANCELED
fn_print_canceled_eol() {
echo -en "${lightyellow}CANCELED${default}"
fn_sleep_time
fn_sleep_time_1
}

fn_print_canceled_eol_nl() {
echo -e "${lightyellow}CANCELED${default}"
fn_sleep_time
fn_sleep_time_1
}

# REMOVED
fn_print_removed_eol() {
echo -en "${red}REMOVED${default}"
fn_sleep_time
fn_sleep_time_1
}

fn_print_removed_eol_nl() {
echo -e "${red}REMOVED${default}"
fn_sleep_time
fn_sleep_time_1
}

# UPDATE
Expand Down
4 changes: 2 additions & 2 deletions lgsm/modules/fix_kf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@

moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"

echo -e "Applying WebAdmin ROOst.css fix."
echo -e "applying WebAdmin ROOst.css fix."
echo -e "http://forums.tripwireinteractive.com/showpost.php?p=585435&postcount=13"
sed -i 's/none}/none;/g' "${serverfiles}/Web/ServerAdmin/ROOst.css"
sed -i 's/underline}/underline;/g' "${serverfiles}/Web/ServerAdmin/ROOst.css"
fn_sleep_time
echo -e "Applying WebAdmin CharSet fix."
echo -e "applying WebAdmin CharSet fix."
echo -e "http://forums.tripwireinteractive.com/showpost.php?p=442340&postcount=1"
sed -i 's/CharSet="iso-8859-1"/CharSet="utf-8"/g' "${systemdir}/UWeb.int"
fn_sleep_time
Expand Down
6 changes: 3 additions & 3 deletions lgsm/modules/fix_ro.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@

moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"

echo -e "Applying webinterface ROOst.css fix."
echo -e "applying webinterface ROOst.css fix."
echo -e "http://forums.tripwireinteractive.com/showpost.php?p=585435&postcount=13"
sed -i 's/none}/none;/g' "${serverfiles}/Web/ServerAdmin/ROOst.css"
sed -i 's/underline}/underline;/g' "${serverfiles}/Web/ServerAdmin/ROOst.css"
fn_sleep_time
echo -e "Applying webinterface CharSet fix."
echo -e "applying webinterface CharSet fix."
echo -e "http://forums.tripwireinteractive.com/showpost.php?p=442340&postcount=1"
sed -i 's/CharSet="iso-8859-1"/CharSet="utf-8"/g' "${systemdir}/uweb.int"
fn_sleep_time
echo -e "Applying Steam AppID fix."
echo -e "applying Steam AppID fix."
sed -i 's/1210/1200/g' "${systemdir}/steam_appid.txt"
fn_sleep_time
echo -e "applying server name fix."
Expand Down
2 changes: 1 addition & 1 deletion lgsm/modules/install_config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ fn_fetch_default_config() {
echo -e ""
echo -e "${italic}https://github.com/GameServerManagers/Game-Server-Configs${default}"
echo -e ""
fn_sleep_time
fn_sleep_time_1
mkdir -p "${lgsmdir}/config-default/config-game"
githuburl="https://raw.githubusercontent.com/GameServerManagers/Game-Server-Configs/main"
for config in "${array_configs[@]}"; do
Expand Down

0 comments on commit ade64fe

Please sign in to comment.