Skip to content

Commit

Permalink
style(autofix.ci): automated formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Jan 13, 2025
1 parent f02e69c commit b30e4e9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion data/json/vehicleparts/vehicle_parts.json
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
"removal": { "skills": [ [ "mechanics", 2 ] ], "time": "15 m", "using": [ [ "vehicle_bolt", 1 ] ] },
"repair": { "skills": [ [ "mechanics", 2 ] ], "time": "30 m", "using": [ [ "welding_standard", 5 ], [ "steel_tiny", 1 ] ] }
},
"flags": [ "SEAT", "BOARDABLE", "CARGO", "BELTABLE" , "SHOCK_RESISTANT"],
"flags": [ "SEAT", "BOARDABLE", "CARGO", "BELTABLE", "SHOCK_RESISTANT" ],
"breaks_into": "ig_vp_seat",
"damage_reduction": { "all": 2 }
},
Expand Down
6 changes: 3 additions & 3 deletions src/vehicle.h
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ struct veh_collision {
//int veh?
int part = 0;
veh_coll_type type = veh_coll_nothing;
// Impulse, in Ns. Call impulse_to_damage or damage_to_impulse from vehicle_move.cpp for conversion to damage.
// Impulse, in Ns. Call impulse_to_damage or damage_to_impulse from vehicle_move.cpp for conversion to damage.
int imp = 0;
//vehicle
void *target = nullptr;
Expand Down Expand Up @@ -183,8 +183,8 @@ int mps_to_vmiph( double mps );
double vmiph_to_mps( int vmiph );
int cmps_to_vmiph( int cmps );
int vmiph_to_cmps( int vmiph );
float impulse_to_damage(float impulse);
float damage_to_impulse(float damage);
float impulse_to_damage( float impulse );
float damage_to_impulse( float damage );

class turret_data
{
Expand Down

0 comments on commit b30e4e9

Please sign in to comment.