/* call-seq:
 *      bz_is_count_down_in_progress? -> true or false
 *
 *      This method returns true when there is a countdown in progress,
 *      false when not progress.
 */ 

static VALUE
bzflag_bz_isCountDownInProgress(VALUE self)
{
        if (bz_isCountDownInProgress())
                return Qtrue;

        return Qfalse;

}