We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62e3919 commit 499c95eCopy full SHA for 499c95e
RasterPropMonitor/Handlers/MechJebRPM.cs
@@ -250,6 +250,12 @@ private void UpdateMethods(RasterPropMonitorComputer rpmComp)
250
251
public void Start()
252
{
253
+ if (!JSIMechJeb.IsInstalled)
254
+ {
255
+ JUtil.LogErrorMessage(this, "PROP {0} is instantiating a MechJebRPM module when MechJeb isn't installed", internalProp.propName);
256
+ enabled = false;
257
+ return;
258
+ }
259
260
// I guess I shouldn't have expected Squad to actually do something nice for a modder like that.
261
// In 0.23, loading in non-alphabetical order is still broken.
0 commit comments