Skip to content

Commit

Permalink
fix #15
Browse files Browse the repository at this point in the history
  • Loading branch information
YoYo178 committed Mar 7, 2024
1 parent 088f4e9 commit c4b0f99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mp/src/game/client/c_baseanimating.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3339,7 +3339,7 @@ void C_BaseAnimating::DoInternalDrawModel( ClientModelRenderInfo_t *pInfo, DrawM
{
m_pRagdoll->DrawWireframe();
}
else if ( IsSolid() && CollisionProp()->GetSolid() == SOLID_VPHYSICS )
else if ( ( IsSolid() && CollisionProp()->GetSolid() == SOLID_VPHYSICS ) || vcollide_wireframe.GetInt() == 2 )
{
vcollide_t *pCollide = modelinfo->GetVCollide( GetModelIndex() );
if ( pCollide && pCollide->solidCount == 1 )
Expand Down

0 comments on commit c4b0f99

Please sign in to comment.