Update MineCode.lua

This commit is contained in:
Igor Timofeev 2015-09-21 07:18:03 +03:00
parent 697b052741
commit ee06f696e2

View File

@ -345,7 +345,7 @@ local function analyseStrings(from, to)
for i = from, to do
--УБИРАЕМ ТАБСЫ НА ХЕР, ЗАМЕНЯЕМ ИХ ПРОБЕЛАМИ
strings[i][1] = ecs.stringReplace(strings[i][1], " ", string.rep(" ", indentationWidth))
strings[i][1] = string.gsub(strings[i][1], " ", string.rep(" ", indentationWidth))
--ВСЯКИЕ ТАМ КОММЕНТАРИИ И ПРОЧЕЕ
local isCommentet = false