diff --git a/Applications.txt b/Applications.txt index 61e2456f..073d2ffe 100644 --- a/Applications.txt +++ b/Applications.txt @@ -517,7 +517,7 @@ icon="IgorTimofeev/OpenComputers/master/Applications/MineCodeIDE/Icon.pic", createShortcut="dock", forceDownload=true, - version=1.57, + version=1.58, resources={ { name="Localization/Russian.lang", diff --git a/Applications/MineCodeIDE/MineCodeIDE.lua b/Applications/MineCodeIDE/MineCodeIDE.lua index 80c9a143..7b923279 100755 --- a/Applications/MineCodeIDE/MineCodeIDE.lua +++ b/Applications/MineCodeIDE/MineCodeIDE.lua @@ -187,7 +187,7 @@ local function getAutocompleteDatabaseMatches(stringToSearch) local matches = {} for word in pairs(autocompleteDatabase) do - if word ~= str then + if word ~= stringToSearch then local match = word:match("^" .. stringToSearch) if match then table.insert(matches, { word, match })