public void ToggleLight() { if (plc.currentFuel > 0) { plc.SetLightEnabled(!plc.IsLightEnabled()); ip.PulseVibrate(.2f); plc.PlayFizzle(); } else { plc.PlayFizzle(); ip.PulseVibrate(.1f); } mc.SetMovementAllowed(true); }