Skip to content
Snippets Groups Projects
Commit 74780ce5 authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'pregmod-master' into 'pregmod-master'

Fix arcade population count.

Closes #4427

See merge request !11211
parents 50c6cb32 c49bf3e2
No related branches found
No related tags found
1 merge request!11211Fix arcade population count.
Pipeline #54615 passed
...@@ -88,7 +88,7 @@ App.Facilities.Arcade.arcade = class Arcade extends App.Facilities.Facility { ...@@ -88,7 +88,7 @@ App.Facilities.Arcade.arcade = class Arcade extends App.Facilities.Facility {
/** @returns {FC.Facilities.Expand} */ /** @returns {FC.Facilities.Expand} */
get expand() { get expand() {
return { return {
desc: `It can support ${num(V.arcade)} inmates. There ${this.facility.hostedSlaves() === 1 ? `is currently ${num(this.facility.hostedSlaves)} slave` : `are currently ${num(this.facility.hostedSlaves)} slaves`} incarcerated in ${V.arcadeName}.`, desc: `It can support ${num(V.arcade)} inmates. There ${this.facility.hostedSlaves() === 1 ? `is` : `are`} currently ${numberWithPluralOne(this.facility.hostedSlaves(), "slave")} incarcerated in ${V.arcadeName}.`,
removeSlave: "work a glory hole", removeSlave: "work a glory hole",
}; };
} }
......
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