Browse Source

SC2086

pull/1863/head
Daniel Gibbs 7 years ago
parent
commit
12c0ac6adb
  1. 2
      lgsm/functions/mods_core.sh

2
lgsm/functions/mods_core.sh

@ -219,7 +219,7 @@ fn_mods_installed_list(){
moddescriptionmaxlength="0"
modcommandmaxlength="0"
# Loop through every line of the installed mods list ${modsinstalledlistfullpath}
while [ ${installedmodsline} -le ${installedmodscount} ]; do
while [ "${installedmodsline}" -le "${installedmodscount}" ]; do
currentmod="$(sed "${installedmodsline}q;d" "${modsinstalledlistfullpath}")"
# Get mod info to make sure mod exists
fn_mod_get_info

Loading…
Cancel
Save