diff options
Diffstat (limited to 'src/game/g_combat.c')
-rw-r--r-- | src/game/g_combat.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/game/g_combat.c b/src/game/g_combat.c index 9a7c1d3..b02ac3e 100644 --- a/src/game/g_combat.c +++ b/src/game/g_combat.c @@ -187,6 +187,7 @@ float G_CamperRewardBonus( gentity_t *self ) float G_TeamRewardScaleFactor( gentity_t *target ) { if (level.humanRewardKills <= 0.0f || level.alienRewardKills <= 0.0f) return 1.0f; + if( !target->client ) return 1.0f; if( target->client->ps.stats[ STAT_TEAM ] == TEAM_ALIENS) { return level.alienRewardKills/level.humanRewardKills; } else if( target->client->ps.stats[ STAT_TEAM ] == TEAM_HUMANS ) { |