Skip to content

Commit

Permalink
fix(server/ox_inventory): dateOfBirth (#202)
Browse files Browse the repository at this point in the history
  • Loading branch information
Frowmza authored Nov 4, 2024
1 parent 3e30752 commit 4a80114
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/bridge/ox_inventory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ OnPlayerLoaded('ox_inventory', (player) => {
identifier: player.charId,
name: `${player.get('firstName')} ${player.get('lastName')}`,
sex: player.get('gender'),
dateofbirth: player.get('dateofbirth'),
dateofbirth: player.get('dateOfBirth'),
groups: {},
});
});

0 comments on commit 4a80114

Please sign in to comment.