This commit is contained in:
kepler155c@gmail.com
2017-04-17 03:13:00 -04:00
parent 4546b9c726
commit 243bcb4ead
4 changed files with 107 additions and 119 deletions

View File

@@ -296,8 +296,14 @@ if not Util.getOptions(options, { ... }, true) then
return
end
if options.turtle.value then
page.turtle = _G.network[options.turtle.value]
if options.turtle.value >= 0 then
for i = 1, 10 do
page.turtle = _G.network[options.turtle.value]
if page.turtle then
break
end
os.sleep(1)
end
end
UI:setPage(page)