Skip to content

Commit

Permalink
Merge pull request #1112 from Andyyy7666/patch-1
Browse files Browse the repository at this point in the history
fix(bridge/ndcore): toString on null
  • Loading branch information
itschip authored Jan 13, 2024
2 parents 31ff7c9 + 268f0d7 commit 7646934
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/game/server/bridge/ndcore/ndcore-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export class NDCoreFramework implements Strategy {
init(): void {
on('ND:characterLoaded', async (player: NDPlayer) => {
const playerIdent = player.id
const phoneNumber = player.phonenumber
const phoneNumber = player.phonenumber ?? ""
const playerSrc = player.source;

await PlayerService.handleNewPlayerEvent({
Expand Down

0 comments on commit 7646934

Please sign in to comment.