This commit is contained in:
Gvidas Juknevičius 2024-08-25 22:18:45 +03:00
parent dc1a26cd4e
commit 5df9f33c2e
Signed by: MCorange
GPG Key ID: 12B1346D720B7FBB
2 changed files with 2 additions and 0 deletions

View File

@ -15,6 +15,7 @@ rawset(__BUNDLER_FILES, "main.lua", function ()
local MODULE_URL = "https://git.mcorangehq.xyz/xomf/keypadOS/raw/branch/keypad/keypadOS.lua"; local MODULE_URL = "https://git.mcorangehq.xyz/xomf/keypadOS/raw/branch/keypad/keypadOS.lua";
local function updaterLoop(upd) local function updaterLoop(upd)
while true do while true do
sleep(1)
upd:checkAndUpdateAll(); upd:checkAndUpdateAll();
end end
end end

View File

@ -6,6 +6,7 @@ local MODULE_URL = "https://git.mcorangehq.xyz/xomf/keypadOS/raw/branch/keypad/k
--- @param upd Updater --- @param upd Updater
local function updaterLoop(upd) local function updaterLoop(upd)
while true do while true do
sleep(1)
upd:checkAndUpdateAll(); upd:checkAndUpdateAll();
end end
end end