-
Notifications
You must be signed in to change notification settings - Fork 20
Open
Description
I was testing the suspension lock (to use in the default legs to save a lander in the Mun full of Kraken power) and noticed the action group was not working, changed to the code below and seems good now.
from
[KSPAction("Lock Suspension")]
public void suspensionLockAction(KSPActionParam param)
{
suspensionLockChanged(null, null);
}
to
[KSPAction("Toggle Suspension Lock")]
public void suspensionLockAction(KSPActionParam param)
{
lockSuspension = !lockSuspension;
suspensionLockChanged(null, null);
}
Metadata
Metadata
Assignees
Labels
No labels