We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d2a434f + 9d42fc0 commit a15bcf0Copy full SHA for a15bcf0
1 file changed
src/game/client/swarm/vgui/asw_hud_minimap.cpp
@@ -23,6 +23,7 @@ using namespace vgui;
23
#include <keyvalues.h>
24
#include "asw_hud_minimap.h"
25
#include "c_asw_player.h"
26
+#include "c_playerresource.h"
27
#include "c_asw_marine.h"
28
#include "asw_marine_profile.h"
29
#include "c_asw_marine_resource.h"
@@ -166,6 +167,9 @@ void MsgFunc_ASWMapLine( bf_read &msg )
166
167
int world_x = msg.ReadLong();
168
int world_y = msg.ReadLong();
169
170
+ if ( g_PR->IsMuted( player_index ) )
171
+ return;
172
+
173
C_ASW_Player *local = C_ASW_Player::GetLocalASWPlayer();
174
if ( local )
175
{
0 commit comments