This commit is contained in:
Igor Timofeev 2017-01-20 12:28:10 +03:00
parent 305d7ed740
commit 2add2f01b9
2 changed files with 2 additions and 2 deletions

View File

@ -517,7 +517,7 @@
icon="IgorTimofeev/OpenComputers/master/Applications/MineCodeIDE/Icon.pic",
createShortcut="dock",
forceDownload=true,
version=1.40,
version=1.41,
resources={
{
name="Localization/Russian.lang",

View File

@ -573,7 +573,7 @@ local function createBreakpointError(variables)
local errorMessage = "error({variables={"
for variable in pairs(variables) do
errorMessage = errorMessage .. "[\"" .. variable .. "\"]=tostring(" .. variable .. "),"
errorMessage = errorMessage .. "[\"" .. variable .. "\"] = type(" .. variable .. ") == \"string\" and \"\\\"\" .. " .. variable .. " .. \"\\\"\" or tostring(" .. variable .. "),"
end
return errorMessage .. "}})"