mirror of
https://github.com/Alee14/bits-UI.git
synced 2025-01-22 10:41:58 -05:00
You can disable that message from code
This commit is contained in:
parent
53e4faeef2
commit
3e13eb0a45
1 changed files with 6 additions and 0 deletions
|
@ -1,4 +1,7 @@
|
|||
local welcomeMessage = true
|
||||
|
||||
if fs.exists("/boot/ccboot/boot.lua") then
|
||||
if welcomeMessage == true then
|
||||
term.clear()
|
||||
term.setCursorPos(1,1)
|
||||
term.setBackgroundColor(colours.white)
|
||||
|
@ -8,6 +11,9 @@ if fs.exists("/boot/ccboot/boot.lua") then
|
|||
term.setBackgroundColor(colours.black)
|
||||
term.setTextColor(colours.white)
|
||||
shell.run("boot/ccboot/boot.lua");
|
||||
else
|
||||
shell.run("boot/ccboot/boot.lua");
|
||||
end
|
||||
else
|
||||
term.clear()
|
||||
term.setCursorPos(1,1)
|
||||
|
|
Loading…
Reference in a new issue