Skip to content
Snippets Groups Projects
Commit 08d88cd2 authored by ezsh's avatar ezsh
Browse files

Return default facility name when user name is undefined

Closes #678.
parent de30c714
No related branches found
No related tags found
1 merge request!4307Return default facility name when user name is undefined
...@@ -245,7 +245,8 @@ App.Entity.Facilities.Facility = class { ...@@ -245,7 +245,8 @@ App.Entity.Facilities.Facility = class {
/** Facility display name /** Facility display name
* @returns {string} */ * @returns {string} */
get name() { get name() {
return State.variables[this.desc.baseName + "Name"]; const res = State.variables[this.desc.baseName + "Name"];
return res !== undefined ? res : 'the ' + this.genericName;
} }
/** Facility generic name ("Brothel", "Schoolroom", etc.) /** Facility generic name ("Brothel", "Schoolroom", etc.)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment