I had a problem with windows version and I had to upgrade my Unreal Engine Version. On 4.14, on BeginPlay, Add this line to TankAIController start to call Tick():
void ATankAIController::BeginPlay() {
Super::BeginPlay();
PrimaryActorTick.bCanEverTick = true;
...
I hope this help.