summaryrefslogtreecommitdiff
path: root/internal_rewrite/visual_local.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'internal_rewrite/visual_local.cpp')
-rw-r--r--internal_rewrite/visual_local.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal_rewrite/visual_local.cpp b/internal_rewrite/visual_local.cpp
index c519b6f..e77a128 100644
--- a/internal_rewrite/visual_local.cpp
+++ b/internal_rewrite/visual_local.cpp
@@ -299,7 +299,7 @@ namespace features
throw_pos = vec3_t( );
end_pos = trace.endpos;
- draw_3d_line( src, end_pos, clr_t( 66, 143, 244 ) );
+ draw_3d_line( src, end_pos, g_settings.visuals.grenade_pred_clr );
if( trace.fraction != 1.f ) {
float surf_elasticity = 1.f;
@@ -322,7 +322,7 @@ namespace features
ray.Init( end_pos, end, vec3_t( -2.f, -2.f, -2.f ), vec3_t( 2.f, 2.f, 2.f ) );
g_csgo.m_trace( )->TraceRay( ray, CONTENTS_SOLID | CONTENTS_MOVEABLE | CONTENTS_MONSTER | CONTENTS_CURRENT_90, &filter, &trace );
- draw_3d_line( end_pos, end, clr_t( 66, 143, 244 ), true );
+ draw_3d_line( end_pos, end, g_settings.visuals.grenade_pred_clr, true );
end_pos = trace.endpos;
throw_pos = throw_pos2;
}