mirror of
https://github.com/IgorTimofeev/MineOS.git
synced 2025-12-20 11:09:21 +01:00
Блядь, ну вечно надо допиливать
This commit is contained in:
parent
9425e82073
commit
aa8ccf234a
@ -11,7 +11,13 @@ while true do
|
|||||||
end
|
end
|
||||||
|
|
||||||
handle.close()
|
handle.close()
|
||||||
local success,reason=xpcall(load(data),debug.traceback)
|
|
||||||
if not success then
|
local result, reason = load(data, "=installer")
|
||||||
error(reason)
|
if result then
|
||||||
|
result, reason = xpcall(result, debug.traceback)
|
||||||
|
if not result then
|
||||||
|
error(reason)
|
||||||
|
end
|
||||||
|
else
|
||||||
|
error(reason)
|
||||||
end
|
end
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user