Browse Source

Attempt for the use of cleaner core functions

pull/1255/head
UltimateByte 8 years ago
committed by GitHub
parent
commit
849c13037a
  1. 15
      lgsm/functions/command_mods_remove.sh

15
lgsm/functions/command_mods_remove.sh

@ -17,18 +17,11 @@ fn_mods_remove_init(){
echo "=================================" echo "================================="
echo "${gamename} mods & addons removal" echo "${gamename} mods & addons removal"
echo "" echo ""
# Installed mod dir is "${modslockfilefullpath}" # A simple function to exit if no mods were installed
# How many mods are installed # Also returns ${installedmodscount} if mods were found
installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" fn_mods_exit_if_not_installed
# If no mods to be updated
if [ ! -f "${modslockfilefullpath}" ]||[ $installedmodscount -eq 0 ]; then
fn_print_information_nl "No mods or addons to remove"
echo " * Did you install any mod using LGSM?"
fn_script_log_info "No mods or addons to remove."
core_exit.sh
fi
# Displays installed addons to the user # Displays installed addons to the user
fn_installed_mods_list fn_installed_mods_medium_list
echo "" echo ""
# Keep prompting as long as the user input doesn't correspond to an available mod # Keep prompting as long as the user input doesn't correspond to an available mod
while [[ ! " ${installedmodslist[@]} " =~ " ${usermodselect} " ]]; do while [[ ! " ${installedmodslist[@]} " =~ " ${usermodselect} " ]]; do

Loading…
Cancel
Save