diff --git a/AtlasServerUpdateUtility.au3 b/AtlasServerUpdateUtility.au3 index 909f287..8739696 100644 --- a/AtlasServerUpdateUtility.au3 +++ b/AtlasServerUpdateUtility.au3 @@ -3456,14 +3456,16 @@ Func _ConfigCheckForDuplicates($tArray, $tParameter) If UBound($aArray) > 0 Then ;Local $tTxt = "WARNING!!! There are duplicate entries in your " & $aConfigFile & " file." & @CRLF & "The following list contains a separate entry [Paramater:Duplicate] for each duplicate." & @CRLF & @CRLF For $i = 0 To (UBound($aArray) - 1) - $tTxt &= $tParameter & ":" & $aArray[$i] & @CRLF + If $aArray[$i] <> "" Then + $tTxt &= $tParameter & ":" & $aArray[$i] & @CRLF + $aDupError = True + EndIf Next ; $tTxt &= @CRLF & "Click (OK) to exit util." ; SplashOff() ; MsgBox($MB_OK, $aUtilName, $tTxt) ; Run("notepad.exe " & $aConfigFull) ; Exit - $aDupError = True EndIf Return $tTxt EndFunc ;==>_ConfigCheckForDuplicates diff --git a/AtlasServerUpdateUtility.zip b/AtlasServerUpdateUtility.zip index 1b86f4a..7fbdb8f 100644 Binary files a/AtlasServerUpdateUtility.zip and b/AtlasServerUpdateUtility.zip differ diff --git a/AtlasServerUpdateUtilityBeta.zip b/AtlasServerUpdateUtilityBeta.zip index 1b86f4a..7fbdb8f 100644 Binary files a/AtlasServerUpdateUtilityBeta.zip and b/AtlasServerUpdateUtilityBeta.zip differ