]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Don't prevent timelimit values at or below 0, instead rely on timelimit_min
authorMario <mario.mario@y7mail.com>
Fri, 27 Sep 2019 15:43:58 +0000 (01:43 +1000)
committerMario <mario.mario@y7mail.com>
Fri, 27 Sep 2019 15:43:58 +0000 (01:43 +1000)
qcsrc/server/command/vote.qc

index 069c0784d30d14ee29ac154775ccc1eec714ba3f..b611ab2665896975ab0b4ce15c24da2480f61190 100644 (file)
@@ -726,7 +726,7 @@ int VoteCommand_parse(entity caller, string vote_command, string vote_list, floa
                case "timelimit": // include restrictions on the maximum votable time limit
                {
                        float timelimit_vote = stof(argv(startpos + 1));
-                       if(timelimit_vote <= 0 || timelimit_vote > autocvar_timelimit_max || timelimit_vote < autocvar_timelimit_min)
+                       if(timelimit_vote > autocvar_timelimit_max || timelimit_vote < autocvar_timelimit_min)
                        {
                                print_to(caller, strcat("Invalid timelimit vote, accepted values are between ", ftos(autocvar_timelimit_min), " and ", ftos(autocvar_timelimit_max), "."));
                                return -1;