Redirecting another pawn's input to Chaos Vehicle command doesn't work (vehicle doesn't move)

I have my chaos vehicle working correctly and moving when I possess it by player controller, but when I possess a crew member (pawn which is actor component in the vehicle pawn) and try to redirect input, vehicle doesn’t move, although i checked that event fires and VehicleMovementComponent->SetThrottle executes.


The problem was that not possessed chaos vehicles don’t move. Even if you place this event in the tick event.

I fixed it with possessing the actual vehicle by an AI Controller.

I have a function in my game mode that returns a free AI controller and I possess the vehicle in its beginplay.