From ba64c21ee077e3c06a66a334a56a2cbb3a981fc9 Mon Sep 17 00:00:00 2001 From: Igor Timofeev Date: Wed, 25 Jan 2017 09:47:50 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9C=D0=B8=D0=BD=D0=B8-=D1=84=D0=B8=D0=BA?= =?UTF-8?q?=D1=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Applications.txt | 2 +- Applications/MineCodeIDE/MineCodeIDE.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 })