Merge branch 'OC1.3-MC1.7.10' of github.com:MightyPirates/OpenComputers into master-MC1.7.10

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

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(...)