Skip to content

Commit

Permalink
Fixed wrong array index for Oxide Version Check
Browse files Browse the repository at this point in the history
  • Loading branch information
Dateranoth committed Nov 18, 2017
1 parent cb6b046 commit b9999f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/RustServerUtility/RustServerUtility.au3
Original file line number Diff line number Diff line change
Expand Up @@ -800,7 +800,7 @@ Func GetLatestOxideVersion($sGameDir)
If UBound($aAppInfo) >= 3 And UBound($aAppInfo2) >= 3 Then
$aReturn[0] = True
$aReturn[1] = $aAppInfo[2]
$aReturn[1] = $aAppInfo2[2]
$aReturn[2] = $aAppInfo2[2]
EndIf
FileClose($hFileOpen)
If FileExists($sFilePath) Then
Expand Down

0 comments on commit b9999f9

Please sign in to comment.