Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,4 @@ This is early-stage software built out of real project needs. APIs will change a
still tightly coupled to specific setups. Contributions and PRs are welcome — see the
[contributing guide](https://mavonengine.com/getting-started/contributing) to get started.

Join the [community](https://mavonengine.com/community) for development discussions.
Join the [community](https://mavonengine.com/community) for development discussions.
4 changes: 3 additions & 1 deletion packages/multiplayer-template/client/src/Entities/Player.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,10 @@ export default class Character extends BasePlayer {
return {
...super.networkedFieldCallbacks(),
name: (v) => {
if (v)
if (v && !this.name) {
this.label.setName(v as string)
this.name = v as string
}
},
}
}
Expand Down
Loading