mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2025-02-23 12:11:27 +00:00
AddScore bug fixed. I thought I put this in already!
This commit is contained in:
parent
ffce2112c1
commit
1e5a6a7305
1 changed files with 7 additions and 3 deletions
|
@ -5,6 +5,9 @@
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
//
|
//
|
||||||
// $Log$
|
// $Log$
|
||||||
|
// Revision 1.40 2002/02/07 21:01:48 niceass
|
||||||
|
// AddScore bug fixed. I thought I put this in already!
|
||||||
|
//
|
||||||
// Revision 1.39 2002/02/06 03:10:43 jbravo
|
// Revision 1.39 2002/02/06 03:10:43 jbravo
|
||||||
// Fix the instant spectate on death and an attempt to fix the scores
|
// Fix the instant spectate on death and an attempt to fix the scores
|
||||||
//
|
//
|
||||||
|
@ -65,9 +68,10 @@ void AddScore( gentity_t *ent, vec3_t origin, int score ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// no scoring during pre-match warmup
|
// no scoring during pre-match warmup
|
||||||
if ( level.warmupTime ) {
|
//if ( level.warmupTime ) {
|
||||||
return;
|
// return;
|
||||||
}
|
//}
|
||||||
|
|
||||||
// show score plum
|
// show score plum
|
||||||
ScorePlum(ent, origin, score);
|
ScorePlum(ent, origin, score);
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in a new issue