From 532335aa1328d7896dae99f0245ff18bfdfbf7a5 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 20 Jan 2017 02:59:25 +0100 Subject: [PATCH] new index variables should fix issue --- lgsm/functions/mods_core.sh | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index ce0582f60..d97b310e4 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -477,9 +477,9 @@ fn_installed_mods_detailed_list(){ fn_mods_available_commands_from_installed # Were now based on ${installedmodslist} array's values # We're gonna go through all available commands, get details and display them to the user - for ((index=0; index <= ${#installedmodslist[@]}; index++)); do - # Current mod is the "index" value of the array we're going through - currentmod="${installedmodslist[index]}" + for ((dlindex=0; dlindex <= ${#installedmodslist[@]}; dlindex++)); do + # Current mod is the "dlindex" value of the array we're going through + currentmod="${installedmodslist[dlindex]}" # Get mod info fn_mod_get_info_from_command # Display mod info to the user @@ -495,9 +495,9 @@ fn_installed_mods_medium_list(){ fn_mods_available_commands_from_installed # Were now based on ${installedmodslist} array's values # We're gonna go through all available commands, get details and display them to the user - for ((index=0; index <= ${#installedmodslist[@]}; index++)); do - # Current mod is the "index" value of the array we're going through - currentmod="${installedmodslist[index]}" + for ((mlindex=0; mlindex <= ${#installedmodslist[@]}; mlindex++)); do + # Current mod is the "mlindex" value of the array we're going through + currentmod="${installedmodslist[mlindex]}" # Get mod info fn_mod_get_info_from_command # Display mod info to the user @@ -516,9 +516,9 @@ fn_installed_mods_light_list(){ echo "Installed mods/addons" # Were now based on ${installedmodslist} array's values # We're gonna go through all available commands, get details and display them to the user - for ((index=0; index <= ${#installedmodslist[@]}; index++)); do - # Current mod is the "index" value of the array we're going through - currentmod="${installedmodslist[index]}" + for ((llindex=0; llindex <= ${#installedmodslist[@]}; llindex++)); do + # Current mod is the "llindex" value of the array we're going through + currentmod="${installedmodslist[llindex]}" # Get mod info fn_mod_get_info_from_command # Display simple mod info to the user @@ -536,9 +536,9 @@ fn_installed_mods_update_list(){ echo "Installed mods/addons" # Were now based on ${installedmodslist} array's values # We're gonna go through all available commands, get details and display them to the user - for ((index=0; index <= ${#installedmodslist[@]}; index++)); do - # Current mod is the "index" value of the array we're going through - currentmod="${installedmodslist[index]}" + for ((ulindex=0; ulindex <= ${#installedmodslist[@]}; ulindex++)); do + # Current mod is the "ulindex" value of the array we're going through + currentmod="${installedmodslist[ulindex]}" # Get mod info fn_mod_get_info_from_command # Display simple mod info to the user according to the update policy