Skip to content

Commit

Permalink
fix(core): vehicle get color params
Browse files Browse the repository at this point in the history
  • Loading branch information
dockfries committed Jul 29, 2024
1 parent 633055b commit cbbf1b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/wrapper/native/vehicle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const SetVehicleSpawnInfo = (
export const GetVehicleColors = (vehicleId: number): IVehColor => {
const [color1 = 0, color2 = 0]: number[] = samp.callNative(
"GetVehicleColor",
"i",
"iII",
vehicleId,
);
return { color1, color2 };
Expand Down

0 comments on commit cbbf1b1

Please sign in to comment.