mirror of
https://github.com/MightyPirates/OpenComputers.git
synced 2025-09-11 00:09:44 -04:00
remove boot safe guard for boot on slow servers, it broke stuff. maybe revist another time
This commit is contained in:
parent
07791b9851
commit
868c101772
@ -42,8 +42,6 @@ if gpu and screen then
|
|||||||
gpu.fill(1, 1, w, h, " ")
|
gpu.fill(1, 1, w, h, " ")
|
||||||
end
|
end
|
||||||
local y = 1
|
local y = 1
|
||||||
local uptime = computer.uptime
|
|
||||||
local last_sleep = uptime()
|
|
||||||
local function status(msg)
|
local function status(msg)
|
||||||
if gpu and screen then
|
if gpu and screen then
|
||||||
gpu.set(1, y, msg)
|
gpu.set(1, y, msg)
|
||||||
@ -54,10 +52,6 @@ local function status(msg)
|
|||||||
y = y + 1
|
y = y + 1
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if uptime() - last_sleep > 1 then
|
|
||||||
computer.pullSignal(0)
|
|
||||||
last_sleep = uptime()
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
status("Booting " .. _OSVERSION .. "...")
|
status("Booting " .. _OSVERSION .. "...")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user