diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2020-11-16 16:03:10 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2020-11-16 16:03:10 -0500 |
| commit | d971f492e0939d85bb55361d028dd0fe9428be63 (patch) | |
| tree | 8fe4766c4a28694a44fee39b9eeb0a4493300dfa /System/boot.lua | |
| parent | 4475d80db9a8eb0db0b7bb88cf2d76794073f46c (diff) | |
| download | bits-UI-d971f492e0939d85bb55361d028dd0fe9428be63.tar.gz bits-UI-d971f492e0939d85bb55361d028dd0fe9428be63.tar.bz2 bits-UI-d971f492e0939d85bb55361d028dd0fe9428be63.zip | |
loadAPI got depcreated; Renamed Apps to Programs
Diffstat (limited to 'System/boot.lua')
| -rw-r--r-- | System/boot.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/System/boot.lua b/System/boot.lua index 35d212b..2b81f8f 100644 --- a/System/boot.lua +++ b/System/boot.lua @@ -23,6 +23,15 @@ print("Starting up bits-UI ".. version .."...") print(_HOST) +--[[ +if os.version == "CraftOS 1.8" then + print("[OK] Running on the latest version of CraftOS...") + sleep(2) +else + print("You are not running CraftOS 1.8. Boot process halted.") + sleep(2) + os.shutdown() +end]]-- if term.isColor() then term.setTextColor(colors.green) |
