mirror of
https://github.com/MightyPirates/OpenComputers.git
synced 2025-09-17 11:15:12 -04:00
Fix problem pointed out by fnuecke
Changed 1 and 0 to true and false
This commit is contained in:
parent
41579f85bc
commit
4c8b33e5d9
@ -13,7 +13,7 @@ local function nextLine(file, line, num)
|
||||
if not line then
|
||||
line = file:read("*l")
|
||||
if not line then -- eof
|
||||
return 1
|
||||
return true
|
||||
end
|
||||
end
|
||||
local wrapped
|
||||
@ -24,7 +24,7 @@ local function nextLine(file, line, num)
|
||||
term.setCursor(1, h)
|
||||
term.write(":")
|
||||
term.setCursorBlink(true)
|
||||
return 0
|
||||
return false
|
||||
end
|
||||
|
||||
local args = shell.parse(...)
|
||||
|
Loading…
x
Reference in New Issue
Block a user