Adheer to better naming conventions.

This commit is contained in:
Kenwood 2021-04-09 14:52:30 -04:00
parent 8bde14b93c
commit 2648a543c8
5 changed files with 2 additions and 2 deletions

View File

@ -25,9 +25,9 @@ core:part:getmodule("kOSProcessor"):doevent("Open Terminal"). // Open the termin
NOTIFY("Boot sequence complete, prepare to load and compile the flight scripts."). NOTIFY("Boot sequence complete, prepare to load and compile the flight scripts.").
IF true { // Set this to false to avoid compiling ascent code. IF true { // Set this to false to avoid compiling ascent code.
COMPILE "0:/RadarrSeries/radarr.kerbin.ks" TO "1:/ascent.ksm". // Compile the flight code into a ksm object. COMPILE "0:/RadarrSeries/radarr_kerbin.ks" TO "1:/ascent.ksm". // Compile the flight code into a ksm object.
} ELSE { } ELSE {
COPYPATH("0:/RadarrSeries/radarr.kerbin.ks", "1:/ascent.ks"). // Copy over our launch script from the archive at ksc COPYPATH("0:/RadarrSeries/radarr_kerbin.ks", "1:/ascent.ks"). // Copy over our launch script from the archive at ksc
} }
NOTIFY("Program compiled and ready to run."). NOTIFY("Program compiled and ready to run.").