Compare commits

..

2 Commits

Author SHA1 Message Date
Kenwood b636d4baa2 Just a small quick update. 2021-04-09 14:17:15 -04:00
Kenwood 33605477bd Fix misc capatolization. 2021-04-09 02:58:36 -04:00
1 changed files with 3 additions and 4 deletions

View File

@ -16,8 +16,8 @@ FUNCTION NOTIFY {
} }
// This section from latest docs. // This section from latest docs.
wait until ship:unpacked. WAIT UNTIL ship:unpacked.
clearscreen. CLEARSCREEN.
NOTIFY("Boot sequence complete, prepare to load and compile the flight scripts."). NOTIFY("Boot sequence complete, prepare to load and compile the flight scripts.").
@ -31,8 +31,7 @@ NOTIFY("Program compiled and ready to run.").
IF ALT:RADAR < 100 { // If our radar alt is lower than 10 IF ALT:RADAR < 100 { // If our radar alt is lower than 10
WAIT 5. WAIT 5.
run ascent.ks. // Run the ascent stage! RUN ascent.ks. // Run the ascent stage!
} else { } else {
NOTIFY("System booted but did not pass pre-flight checks, aborting excecution!"). NOTIFY("System booted but did not pass pre-flight checks, aborting excecution!").
} }