Skip to content

Commit

Permalink
shared: add NONE to Enums.VehicleIndicatorLights (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianV85 authored Nov 12, 2023
1 parent 9d93b0f commit da0715b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions shared/js/enums/vehicleIndicatorLights.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// When changing, update types/shared/index.d.ts aswell
alt.Enums.VehicleIndicatorLights = Object.freeze({
NONE: 0,
BLINK_LEFT: 1,
BLINK_RIGHT: 2,
BLINK_PERM_BOTH: 4,
Expand Down
1 change: 1 addition & 0 deletions types/shared/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2145,6 +2145,7 @@ declare module "@altv/shared" {

// When changing, update shared/js/enums/vehicleIndicatorLights.js aswell
export enum VehicleIndicatorLights {
NONE = 0,
BLINK_LEFT = 1,
BLINK_RIGHT = 2,
BLINK_PERM_BOTH = 4,
Expand Down

0 comments on commit da0715b

Please sign in to comment.