int aim::calc_bt_ticks() {
auto records = &player_records[final_target.record->player->EntIndex()];
for (auto i = 0; i < records->size(); i++)
{
auto record = &records->at(i);
if (record->simulation_time == final_target.record->simulation_time)
return i...