From 868c10177295af71e0cfd1e4c7fea2b585e64891 Mon Sep 17 00:00:00 2001 From: payonel Date: Tue, 31 Oct 2017 00:17:00 -0700 Subject: [PATCH] remove boot safe guard for boot on slow servers, it broke stuff. maybe revist another time --- .../assets/opencomputers/loot/openos/lib/core/boot.lua | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/main/resources/assets/opencomputers/loot/openos/lib/core/boot.lua b/src/main/resources/assets/opencomputers/loot/openos/lib/core/boot.lua index 3d975595b..775eca3f5 100644 --- a/src/main/resources/assets/opencomputers/loot/openos/lib/core/boot.lua +++ b/src/main/resources/assets/opencomputers/loot/openos/lib/core/boot.lua @@ -42,8 +42,6 @@ if gpu and screen then gpu.fill(1, 1, w, h, " ") end local y = 1 -local uptime = computer.uptime -local last_sleep = uptime() local function status(msg) if gpu and screen then gpu.set(1, y, msg) @@ -54,10 +52,6 @@ local function status(msg) y = y + 1 end end - if uptime() - last_sleep > 1 then - computer.pullSignal(0) - last_sleep = uptime() - end end status("Booting " .. _OSVERSION .. "...")