Merge branch 'OC1.3-MC1.6.4' of github.com:MightyPirates/OpenComputers

This commit is contained in:
Florian Nücke 2014-08-04 17:52:23 +02:00
commit faf6c50654

View File

@ -70,8 +70,8 @@ end
function io.lines(filename, ...)
if filename then
local result, reason = io.open(filename)
if not result then
local file, reason = io.open(filename)
if not file then
error(reason, 2)
end
local args = table.pack(...)