about summary refs log tree commit diff
path: root/src/game
diff options
context:
space:
mode:
authorAlfred Eriksson <somerunce@gmail.com>2009-01-17 16:52:57 +0000
committerAlfred Eriksson <somerunce@gmail.com>2009-01-17 16:52:57 +0000
commit96f604f9d1d0825f88e05441c1a21646a94d6a72 (patch)
tree86b638d2b88136b0f8d917ec24cb285898ef01c5 /src/game
parent6c98a36f0f5b583c4aa5476b742d9046a53f1b7f (diff)
downloadzcatch-96f604f9d1d0825f88e05441c1a21646a94d6a72.tar.gz
zcatch-96f604f9d1d0825f88e05441c1a21646a94d6a72.zip
increased voting time to 25 secs #637
Diffstat (limited to 'src/game')
-rw-r--r--src/game/server/gamecontext.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/server/gamecontext.cpp b/src/game/server/gamecontext.cpp
index 5c1c0486..9e53d6ff 100644
--- a/src/game/server/gamecontext.cpp
+++ b/src/game/server/gamecontext.cpp
@@ -245,7 +245,7 @@ void GAMECONTEXT::start_vote(const char *desc, const char *command)
 	}
 	
 	// start vote
-	vote_closetime = time_get() + time_freq()*10;
+	vote_closetime = time_get() + time_freq()*25;
 	str_copy(vote_description, desc, sizeof(vote_description));
 	str_copy(vote_command, command, sizeof(vote_description));
 	send_vote_set(-1);