diff --git a/Meade.net.Telescope/Telescope.cs b/Meade.net.Telescope/Telescope.cs index 05b57bc..a8a3c58 100644 --- a/Meade.net.Telescope/Telescope.cs +++ b/Meade.net.Telescope/Telescope.cs @@ -2294,8 +2294,11 @@ namespace ASCOM.Meade.net if (IsSlewingToTarget()) throw new InvalidOperationException("Unable to PulseGuide whilst slewing to target."); - if (AlignmentMode == AlignmentModes.algAltAz) - throw new InvalidOperationException("Unable to PulseGuide whilst in AltAz mode."); + if (!_isStarPatch) + { + if (AlignmentMode == AlignmentModes.algAltAz) + throw new InvalidOperationException("Unable to PulseGuide whilst in AltAz mode."); + } SharedResourcesWrapper.IsGuiding = true; try