When you type “act dance” into your console while in a vehicle, your view locks up.
This happens in sandbox.
Refer to here:
line 363 prevents line 373 from running, which is where the taunt camera is handled.
Garry can you fix that please?
Cheers.
While we’re waiting, here’s my quick-fix.
[lua]
hook.Add( “CalcVehicleView”, “FixVehicleTaunt”, function( veh,ply,view )
if( ply:IsPlayingTaunt() ) then
player_manager.RunClass( ply, “CalcView”, view )
return view
end
end )
[/lua]