fix errors

This commit is contained in:
smthbh 2025-04-28 14:27:37 -04:00
parent 836df77375
commit 29d76e8a75

View file

@ -552,7 +552,7 @@ export class CharacterController {
} }
private getZoneName(zoneId: number): string { private getZoneName(zoneId: number): string {
this.areaById[zoneId]?.zoneName this.areaById[zoneId]?.zoneName;
return this.areaById[zoneId]?.zoneName || `Zone ${zoneId}`; return this.areaById[zoneId]?.zoneName || `Zone ${zoneId}`;
} }