From 7e0151166d22ec90bf917ce1e5da89ee0b604195 Mon Sep 17 00:00:00 2001 From: "Casper V. Kristensen" Date: Thu, 20 Jun 2019 16:56:47 +0200 Subject: [PATCH] Update list of RCS thrusters for KSP v1.7. --- lib/rcs.ks | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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. } }