mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-26 22:11:18 +00:00
non-missionpack build throws up a few "0" plums
found by Ensiform
This commit is contained in:
parent
2834a58600
commit
c3ca5c1caa
1 changed files with 3 additions and 1 deletions
|
@ -768,8 +768,10 @@ int Team_TouchOurFlag( gentity_t *ent, gentity_t *other, int team ) {
|
|||
player->client->pers.teamState.lasthurtcarrier = -5;
|
||||
} else if (player->client->sess.sessionTeam ==
|
||||
cl->sess.sessionTeam) {
|
||||
#ifdef MISSIONPACK
|
||||
if (player != other)
|
||||
AddScore(player, ent->r.currentOrigin, CTF_TEAM_BONUS);
|
||||
#endif
|
||||
// award extra points for capture assists
|
||||
if (player->client->pers.teamState.lastreturnedflag +
|
||||
CTF_RETURN_FLAG_ASSIST_TIMEOUT > level.time) {
|
||||
|
@ -831,9 +833,9 @@ int Team_TouchEnemyFlag( gentity_t *ent, gentity_t *other, int team ) {
|
|||
Team_SetFlagStatus( team, FLAG_TAKEN );
|
||||
#ifdef MISSIONPACK
|
||||
}
|
||||
#endif
|
||||
|
||||
AddScore(other, ent->r.currentOrigin, CTF_FLAG_BONUS);
|
||||
#endif
|
||||
cl->pers.teamState.flagsince = level.time;
|
||||
Team_TakeFlagSound( ent, team );
|
||||
|
||||
|
|
Loading…
Reference in a new issue