From: Mario Date: Sun, 7 Feb 2016 23:20:17 +0000 (+1000) Subject: Show all players in race mode X-Git-Tag: xonotic-v0.8.2~1198 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=96c56e7f6b097d593f41cc7a29f6792f87eeb4d3;p=xonotic%2Fxonotic-data.pk3dir.git Show all players in race mode --- diff --git a/qcsrc/client/hud/panel/radar.qc b/qcsrc/client/hud/panel/radar.qc index 2082f70b1..4ab16d052 100644 --- a/qcsrc/client/hud/panel/radar.qc +++ b/qcsrc/client/hud/panel/radar.qc @@ -340,7 +340,7 @@ void HUD_Radar() FOREACH_ENTITY_FLAGS(teamradar_icon, 0xFFFFFF, LAMBDA( if ( hud_panel_radar_mouse ) if ( it.health > 0 ) - if ( it.team == myteam+1 ) + if ( it.team == myteam+1 || gametype == MAPINFO_TYPE_RACE ) { vector coord = teamradar_texcoord_to_2dcoord(teamradar_3dcoord_to_texcoord(it.origin)); if(vdist((mousepos - coord), <, 8))