Quote:
Originally Posted by feruchio
but quite strange the vote show up 10 minutes before it have to. I should mention that in half of the times works normally and vote start when it supposed to start.
|
It seems you are using the cvar `gal_endofmapvote_start` which not proper for round based
deathmatch server. So, just set it to 0 on your `galileo.cfg`:
Code:
// A heuristic which counts every end round, how much time the round
// took and how much time remains to the end of map. In base with it,
// calculate the correct round to start the voting.
//
// Notes:
// 1. It requires the game to have at least 8 rounds played, otherwise
// it cannot try to guess on which round it should to start the voting.
//
// 2. If the prediction fail and the voting is not finish when the round
// ended or the round total time is too short, i.e., the round total
// time is bigger than the total voting time (including a possible
// runoff, if enabled), a extra round will be played.
//
// 0 - Disable this feature.
// 1 - To start the voting on the Ultima game round (the last round to be played).
// 2 - To start the voting on the Penult game round (the round before the last).
// 3 - To start the voting on the Antepenult game round (the round before the last of the last).
//
// Default: 0
gal_endofmapvote_start 0
__________________