diff --git a/lib/rcs.ks b/lib/rcs.ks index 8faf87d..2b24223 100644 --- a/lib/rcs.ks +++ b/lib/rcs.ks @@ -22,8 +22,10 @@ function rcs_maxthrust { // Source: https://wiki.kerbalspaceprogram.com/wiki/Reaction_Control_System#Thrusters local rcs_thrusts is LEXICON( // in kN "RCSBlock", 1.0, // RV-105 RCS Thruster Block + "RCSBlock.v2", 1.0, // RV-105 RCS Thruster Block (KSP v1.7+) "linearRcs", 2.0, // Place-Anywhere 7 Linear RCS Port - "vernierEngine", 12.0 // Vernor Engine + "vernierEngine", 12.0, // Vernor Engine + "mk1-3pod", 1.0 // Mk1-3 Command Pod ). local thrust_sum is 0. @@ -32,7 +34,7 @@ function rcs_maxthrust { if rcs_thrusts:haskey(part_name) { set thrust_sum to thrust_sum + rcs_thrusts[part_name]. } else { // if non-stock part - print "WARNING: Unknown RCS Thruster '" + part_name + "'; using default thrust of 1.0 kN". + print "WARNING: Unknown RCS Thruster '" + part_name + "': using default thrust of 1.0 kN". set thrust_sum to thrust_sum + 1.0. } }