Interrupt/cancel command repetition less often when repeating a wizard command.
3HZGHRW7W27HXLV6IHWZTA47NME4XMHWTYR75YX4SHDK5LBDS37AC
if (repeat_cmd == CMD_WIZARD)
{
// Don't interrupt wizard testing of religion.
if (is_god_acting())
return;
// Don't interrupt wizard testing just because we can't
// move.
if (you.cannot_act())
return;
// We've probably just recovered from being unable to act;
// again, don't interrupt.
if (you.turn_is_over)
return;
}