This commit is contained in:
kepler155c@gmail.com 2019-02-23 07:27:35 -05:00
parent 4485a751bd
commit 1c859029f1
3 changed files with 2 additions and 8 deletions

View File

@ -83,7 +83,7 @@ local page = UI.Page {
intro = UI.TextArea {
textColor = colors.yellow,
inactive = true,
x = 3, ex = -3, y = 2, ey = -3,
x = 3, ex = -3, y = 2, ey = -4,
value = string.format(packagesIntro, Ansi.white),
},
},

View File

@ -1,3 +1,4 @@
if fs.exists('sys/apps/shell') and fs.exists('sys/apps/shell.lua') then
fs.delete('sys/apps/shell')
end
if fs.exists('sys/autorun/gps.lua') then fs.delete('sys/autorun/gps.lua') end

View File

@ -1240,11 +1240,4 @@ function turtle.inspectDownAt(pt) return _actionDownAt(actionsAt.inspect,
function turtle.inspectForwardAt(pt) return _actionForwardAt(actionsAt.inspect, pt) end
function turtle.inspectUpAt(pt) return _actionUpAt(actionsAt.inspect, pt) end
-- deprecate
function turtle.addFeatures(...)
for _,feature in pairs({ ... }) do
require('turtle.' .. feature)
end
end
turtle.reset()