From: MirceaKitsune Date: Wed, 8 Sep 2010 22:35:31 +0000 (+0300) Subject: Don't allow vore before a round begins X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=44b773c582370eb4dbdfeb078d66c57aed8f38c5;p=voretournament%2Fvoretournament.git Don't allow vore before a round begins --- diff --git a/data/qcsrc/server/vore.qc b/data/qcsrc/server/vore.qc index 4b76c484..2034b1cf 100644 --- a/data/qcsrc/server/vore.qc +++ b/data/qcsrc/server/vore.qc @@ -307,7 +307,7 @@ void Vore() } // skip the vore system under some circumstances - if(time < game_starttime) + if(time < game_starttime || (time < warmup && !inWarmupStage)) { Vore_Disconnect(); return;