Skip to content
Snippets Groups Projects
Commit d86d0ed3 authored by lowercasedonkey's avatar lowercasedonkey
Browse files

hand review

parent 9136b4f8
No related branches found
No related tags found
1 merge request!8270Arcade to js
...@@ -5,223 +5,221 @@ App.EndWeek.arcadeReport = function() { ...@@ -5,223 +5,221 @@ App.EndWeek.arcadeReport = function() {
const el = new DocumentFragment(); const el = new DocumentFragment();
let r; let r;
<span id="arcade-stats"> const arcadeStats = document.createElement("span");
</span> el.append(arcadeStats);
_slaves = App.Utils.sortedEmployees(App.Entity.facilities.arcade); const slaves = App.Utils.sortedEmployees(App.Entity.facilities.arcade);
_DL = _slaves.length, _SL = V.slaves.length, _cockmilked = 0, _milked = 0, _milkProfits = 0, _profits = 0, _oldCash = 0, _boobsImplanted = 0, _prostatesImplanted = 0, _vasectomiesUndone = 0, _mSlave = 0, _bSlave = 0, _pSlave = 0, _cSlave = 0; const _DL = slaves.length;
let _cockmilked = 0, _milked = 0, _milkProfits = 0, _profits = 0, _boobsImplanted = 0, _prostatesImplanted = 0, _vasectomiesUndone = 0, _mSlave, _bSlave, _pSlave, _cSlave, _milkResults, _growth;
<!-- Statistics gathering --> // Statistics gathering
V.facility = V.facility || {}, V.facility.arcade = initFacilityStatistics(V.facility.arcade); V.facility = V.facility || {};
_arcadeNameCaps = capFirstChar(V.arcadeName); V.facility.arcade = initFacilityStatistics(V.facility.arcade);
const _arcadeNameCaps = capFirstChar(V.arcadeName);
&nbsp;&nbsp;&nbsp;&nbsp; if (_DL > 1) {
if (_DL > 1) {''There are _DL inmates confined in V.arcadeName.'' App.UI.DOM.appendNewElement("p", el, `There are ${_DL} inmates confined in ${V.arcadeName}.`, ["bold", "indent"]);
} else {''There is one inmate confined in V.arcadeName.'' } else {
App.UI.DOM.appendNewElement("p", el, `There is one inmate confined in ${V.arcadeName}.`, ["bold", "indent"]);
} }
r = [];
if (V.arcologies[0].FSDegradationist > 20) { if (V.arcologies[0].FSDegradationist > 20) {
if (V.arcologies[0].FSDegradationistLaw === 1) { if (V.arcologies[0].FSDegradationistLaw === 1) {
r.push(`The tenants located near the arcade consider the facility a normal part of their surroundings, including the crowd of menial slaves waiting their turn spills out into the hallway, 24 hours a day.`); r.push(`The tenants located near the arcade consider the facility a normal part of their surroundings, including the crowd of menial slaves waiting their turn spills out into the hallway, 24 hours a day.`);
} else { } else {
r.push(`The tenants located near the arcade consider the facility a normal part of their surroundings.`); r.push(`The tenants located near the arcade consider the facility a normal part of their surroundings.`);
} }
} else if ((V.arcologies[0].FSPaternalist > 20)) { } else if (V.arcologies[0].FSPaternalist > 20) {
r.push(`The tenants located near the arcade consider it an <span class="red">intolerable</span> establishment.`); r.push(`The tenants located near the arcade consider it an <span class="red">intolerable</span> establishment.`);
} }
App.Events.addNode(el, r, "div", "indent");
if (V.arcadeDecoration !== "standard") { if (V.arcadeDecoration !== "standard") {
<br><br>&nbsp;&nbsp;&nbsp;&nbsp;_arcadeNameCaps's customers enjoy <span class="green">getting off in V.arcadeDecoration surroundings.</span> App.Events.addNode(el, [`${_arcadeNameCaps}'s customers enjoy <span class="green">getting off in ${V.arcadeDecoration} surroundings.</span>`], "p", "indent");
} }
<<for _slave range _slaves>> for (const slave of slaves) {
<<setLocalPronouns _slave>> const {He} = getPronouns(slave);
V.i = V.slaveIndices[_slave.ID]; r = [];
r.push(` /* for the included passages */`); /* for the included passages */
/* Perform facility based rule changes */ /* Perform facility based rule changes */
_slave.clothes = "no clothing"; slave.clothes = "no clothing";
/* Health */ /* Health */
if (V.arcadeUpgradeHealth === 2 && _slave.health.condition < 40) { if (V.arcadeUpgradeHealth === 2 && slave.health.condition < 40) {
improveCondition(_slave, 2); improveCondition(slave, 2);
} else if (_slave.health.condition > 20) { } else if (slave.health.condition > 20) {
healthDamage(_slave, 5); healthDamage(slave, 5);
} else if (V.arcadeUpgradeHealth === 1 && _slave.health.condition < -30) { } else if (V.arcadeUpgradeHealth === 1 && slave.health.condition < -30) {
improveCondition(_slave, 2); improveCondition(slave, 2);
} else if (_slave.health.condition > -50) { } else if (slave.health.condition > -50) {
healthDamage(_slave, 3); healthDamage(slave, 3);
} else if (_slave.health.condition > -90) { } else if (slave.health.condition > -90) {
healthDamage(_slave, 1); healthDamage(slave, 1);
} }
/* Curatives */ /* Curatives */
if (V.arcadeUpgradeHealth === 2) { if (V.arcadeUpgradeHealth === 2) {
_slave.curatives = 2; slave.curatives = 2;
} else if (V.arcadeUpgradeHealth === 1) { } else if (V.arcadeUpgradeHealth === 1) {
_slave.curatives = 1; slave.curatives = 1;
} }
/* Stimulation or lack thereof trust/devotion effect */ /* Stimulation or lack thereof trust/devotion effect */
if (V.arcadeUpgradeInjectors > 0) { if (V.arcadeUpgradeInjectors > 0) {
if (V.arcadeUpgradeInjectors === 2) { if (V.arcadeUpgradeInjectors === 2) {
_slave.aphrodisiacs = 2; slave.aphrodisiacs = 2;
} }
_slave.devotion -= 5, _slave.trust -= 10; slave.devotion -= 5;
slave.trust -= 10;
} else { } else {
_slave.trust -= 5; slave.trust -= 5;
} }
/* Muscles */ /* Muscles */
if (_slave.muscles > -100) { if (slave.muscles > -100) {
_slave.muscles--; slave.muscles--;
} }
if (V.showEWD !== 0) { if (V.showEWD !== 0) {
<br><br> const {He} = getPronouns(slave);
/* 000-250-006 */ const slaveEntry = App.UI.DOM.appendNewElement("div", el, '', "slave-report");
if (V.seeImages && V.seeReportImages) { if (V.seeImages && V.seeReportImages) {
<div class="imageRef tinyImg"> App.UI.DOM.appendNewElement("div", slaveEntry, App.Art.SlaveArtElement(slave, 0, 0), ["imageRef", "tinyImg"]);
r.push(`${V.SlaveArt(_slave}, 0, 0)`);
</div>
} }
/* 000-250-006 */ slaveEntry.append(App.EndWeek.favoriteIcon(slave), " ");
<<includeDOM App.EndWeek.favoriteIcon(_slave)>> r = [];
<span class='slave-name'> r.push(App.UI.DOM.makeElement("span", SlaveFullName(slave), "slave-name"));
V.SlaveFullName(_slave)</span> if (slave.choosesOwnAssignment === 2) {
if (_slave.choosesOwnAssignment === 2) { r.push(App.SlaveAssignment.choosesOwnJob(slave));
r.push(`${V.App.SlaveAssignment.choosesOwnJob(_slave)}`);
} else { } else {
r.push(`is confined in ${V.arcadeName}.`); r.push(`is confined in ${V.arcadeName}.`);
} }
<br>&nbsp;&nbsp;&nbsp;&nbsp;${He} App.Events.addNode(slaveEntry, r, "div");
V.App.SlaveAssignment.workAGloryHole(_slave)
App.Events.addNode(
slaveEntry,
[
He,
App.SlaveAssignment.workAGloryHole(slave),
],
"div",
"indented"
);
} else { } else {
App.SlaveAssignment.choosesOwnJob(_slave); // discard return values silently
App.SlaveAssignment.workAGloryHole(_slave); App.SlaveAssignment.choosesOwnJob(slave);
App.SlaveAssignment.workAGloryHole(slave);
} }
if (V.arcadeUpgradeCollectors > 0) { if (V.arcadeUpgradeCollectors > 0) {
if (_slave.vasectomy === 1) { if (slave.vasectomy === 1) {
_slave.vasectomy = 0, _vasectomiesUndone++; slave.vasectomy = 0;
cashX(forceNeg(V.surgeryCost), "slaveSurgery", _slave), surgeryDamage(_slave, 10); _vasectomiesUndone++;
} else if ((_slave.lactation < 2)) { cashX(forceNeg(V.surgeryCost), "slaveSurgery", slave);
_slave.lactation = 2, _boobsImplanted++; surgeryDamage(slave, 10);
_bSlave = _slave; } else if ((slave.lactation < 2)) {
cashX(forceNeg(V.surgeryCost), "slaveSurgery", _slave), surgeryDamage(_slave, 10); slave.lactation = 2;
} else if (_slave.prostate === 1) { _boobsImplanted++;
_slave.prostate = 2, _prostatesImplanted++; _bSlave = slave;
_pSlave = _slave; cashX(forceNeg(V.surgeryCost), "slaveSurgery", slave);
cashX(forceNeg(V.surgeryCost), "slaveSurgery", _slave), surgeryDamage(_slave, 10); surgeryDamage(slave, 10);
} else if ((_slave.lactation > 0) || (_slave.balls > 0)) { } else if (slave.prostate === 1) {
_milkResults = App.SlaveAssignment.getMilked(_slave, 1.0); slave.prostate = 2;
_prostatesImplanted++;
_pSlave = slave;
cashX(forceNeg(V.surgeryCost), "slaveSurgery", slave);
surgeryDamage(slave, 10);
} else if ((slave.lactation > 0) || (slave.balls > 0)) {
_milkResults = App.SlaveAssignment.getMilked(slave, 1.0);
if (V.showEWD !== 0) { if (V.showEWD !== 0) {
<br>&nbsp;&nbsp;&nbsp;&nbsp;${He} r.push(App.UI.DOM.makeElement("div", `${He} ${_milkResults.text}`, "indent"));
V._milkResults.text
} }
_milkProfits += _milkResults.cash; _milkProfits += _milkResults.cash;
_growth = 0; _growth = 0;
_gigantomastiaMod = _slave.geneticQuirks.gigantomastia === 2 ? (_slave.geneticQuirks.macromastia === 2 ? 3 : 2) : 1; const _gigantomastiaMod = slave.geneticQuirks.gigantomastia === 2 ? (slave.geneticQuirks.macromastia === 2 ? 3 : 2) : 1;
if (_slave.boobs < 2000) { if (slave.boobs < 2000) {
_growth = 100; _growth = 100;
} else if ((_slave.boobs < 5000*_gigantomastiaMod)) { } else if ((slave.boobs < 5000 * _gigantomastiaMod)) {
_growth = 50; _growth = 50;
} else if ((_slave.boobs < 10000*_gigantomastiaMod)) { } else if ((slave.boobs < 10000 * _gigantomastiaMod)) {
_growth = 25; _growth = 25;
} }
if (_slave.geneMods.NCS === 1) { if (slave.geneMods.NCS === 1) {
/* /*
** NCS will allow some growth for Arcade milking, but not as much as the Dairy. ** NCS will allow some growth for Arcade milking, but not as much as the Dairy.
*/ */
_growth = Math.trunc(_growth/3.5); _growth = Math.trunc(_growth / 3.5);
} }
_slave.boobs += _growth; slave.boobs += _growth;
if ((_slave.balls > 0) && (_slave.balls < 10) && (random(1,100) > (40 + (10 * (_slave.balls + (2 * _slave.geneMods.NCS)))))) { if ((slave.balls > 0) && (slave.balls < 10) && (random(1, 100) > (40 + (10 * (slave.balls + (2 * slave.geneMods.NCS)))))) {
_slave.balls++; slave.balls++;
} }
if ((_slave.dick > 0) && (_slave.dick < 10) && (random(1,100) > (40 + (10 * _slave.dick + (2 * _slave.geneMods.NCS))))) { if ((slave.dick > 0) && (slave.dick < 10) && (random(1, 100) > (40 + (10 * slave.dick + (2 * slave.geneMods.NCS))))) {
_slave.dick++; slave.dick++;
} }
if (_slave.lactation > 0) { if (slave.lactation > 0) {
_milked++; _milked++;
_mSlave = _slave; _mSlave = slave;
} }
if (_slave.balls > 0) { if (slave.balls > 0) {
_cockmilked++; _cockmilked++;
_cSlave = _slave; _cSlave = slave;
} }
} }
} }
if (_slave.inflation > 0) { if (slave.inflation > 0) {
deflate(_slave); deflate(slave);
} }
if (V.showEWD !== 0) { if (V.showEWD !== 0) {
<br>&nbsp;&nbsp;&nbsp; r.push(App.SlaveAssignment.standardSlaveReport(slave, false));
<<includeDOM App.SlaveAssignment.rules(_slave)>>
r.push(`${V.App.SlaveAssignment.diet(_slave)}`);
<<includeDOM App.SlaveAssignment.longTermEffects(_slave)>>
r.push(`${V.App.SlaveAssignment.drugs(_slave)}`);
r.push(`${V.App.SlaveAssignment.relationships(_slave)}`);
r.push(`${V.App.SlaveAssignment.rivalries(_slave)}`);
<br>&nbsp;&nbsp;&nbsp;&nbsp;
V.App.SlaveAssignment.devotion(_slave)
} else { } else {
App.SlaveAssignment.rules(); App.SlaveAssignment.standardSlaveReport(slave, true);
App.SlaveAssignment.diet(_slave);
App.SlaveAssignment.longTermEffects(_slave);
App.SlaveAssignment.drugs(_slave);
App.SlaveAssignment.relationships(_slave);
App.SlaveAssignment.rivalries(_slave);
App.SlaveAssignment.devotion(_slave);
} }
<</for>> App.Events.addNode(el, r, "div", "indent");
}
if (_DL + V.fuckdolls > 0) { if (_DL + V.fuckdolls > 0) {
<br><br>&nbsp;&nbsp;&nbsp; r = [];
if (_milked === 1) { if (_milked === 1) {
<<setLocalPronouns _mSlave>> const {his} = getPronouns(_mSlave);
r.push(`One of them is lactating and spends ${his} time in ${V.arcadeName} being simultaneously milked and fucked.`); r.push(`One of them is lactating and spends ${his} time in ${V.arcadeName} being simultaneously milked and fucked.`);
} else if (_milked > 1) { } else if (_milked > 1) {
_milked of them are lactating and spend their time in V.arcadeName being simultaneously milked and fucked. r.push(`${_milked} of them are lactating and spend their time in ${V.arcadeName} being simultaneously milked and fucked.`);
} }
if (_vasectomiesUndone) { if (_vasectomiesUndone) {
if (_vasectomiesUndone === 1) { if (_vasectomiesUndone === 1) {
r.push(`One`); r.push(`One`);
} else { } else {
_vasectomiesUndone _vasectomiesUndone;
} }
r.push(`of them had severed vas deferens, so they were reattached to allow sperm through, costing <span class="red">`); r.push(`of them had severed vas deferens, so they were reattached to allow sperm through, costing <span class="red">${cashFormat(V.surgeryCost * _vasectomiesUndone)}.</span>`);
V.cashFormat(V.surgeryCost*_vasectomiesUndone)
r.push(`.</span>`);
} }
if (_boobsImplanted) { if (_boobsImplanted) {
if (_boobsImplanted === 1) { if (_boobsImplanted === 1) {
<<setLocalPronouns _bSlave>> const {he} = getPronouns(_bSlave);
r.push(`One of them was not lactating, so ${he} was`); r.push(`One of them was not lactating, so ${he} was`);
} else { } else {
_boobsImplanted of them were not lactating, so they were r.push(`${_boobsImplanted} of them were not lactating, so they were`);
} }
r.push(`implanted with long-acting lactation inducing drugs, costing <span class="red">`); r.push(`implanted with long-acting lactation inducing drugs, costing <span class="red">${cashFormat(V.surgeryCost * _boobsImplanted)}.</span>`);
V.cashFormat(V.surgeryCost*_boobsImplanted)
r.push(`.</span>`);
} }
if (_prostatesImplanted) { if (_prostatesImplanted) {
if (_prostatesImplanted === 1) { if (_prostatesImplanted === 1) {
<<setLocalPronouns _pSlave>> const {he} = getPronouns(_pSlave);
r.push(`One of them was not producing the maximum possible amount of precum, so ${he} was`); r.push(`One of them was not producing the maximum possible amount of precum, so ${he} was`);
} else { } else {
_prostatesImplanted of them were not producing the maximum possible amount of precum, so they were r.push(`${_prostatesImplanted} of them were not producing the maximum possible amount of precum, so they were`);
} }
r.push(`implanted with long-acting prostate stimulation drugs, costing <span class="red">`); r.push(`implanted with long-acting prostate stimulation drugs, costing <span class="red">${cashFormat(V.surgeryCost * _prostatesImplanted)}.</span>`);
V.cashFormat(V.surgeryCost*_prostatesImplanted)
r.push(`.</span>`);
} }
if (_cockmilked === 1) { if (_cockmilked === 1) {
<<setLocalPronouns _cSlave>> const {he} = getPronouns(_cSlave);
r.push(`One of them retains testicles and is brutally cockmilked as ${he} is used.`); r.push(`One of them retains testicles and is brutally cockmilked as ${he} is used.`);
} else if (_cockmilked > 1) { } else if (_cockmilked > 1) {
_cockmilked of them retain testicles and are brutally cockmilked as they are used. r.push(`${_cockmilked} of them retain testicles and are brutally cockmilked as they are used.`);
} }
r.push(`The arcade makes you`); r.push(`The arcade makes you`);
if (V.policies.publicFuckdolls === 0) { if (V.policies.publicFuckdolls === 0) {
r.push(`<span class="yellowgreen">`); r.push(`<span class="yellowgreen">${cashFormat(_profits)}</span> from selling the inmates' holes`);
V.cashFormat(_profits)
r.push(`</span> from selling the inmates' holes`);
} else { } else {
r.push(`<span class="green">more reputable</span> from freely providing the inmates' holes`); r.push(`<span class="green">more reputable</span> from freely providing the inmates' holes`);
} }
...@@ -229,47 +227,45 @@ App.EndWeek.arcadeReport = function() { ...@@ -229,47 +227,45 @@ App.EndWeek.arcadeReport = function() {
r.push(`and`); r.push(`and`);
} }
if (V.arcadeUpgradeCollectors > 0) { if (V.arcadeUpgradeCollectors > 0) {
r.push(`<span class="yellowgreen">`); r.push(`<span class="yellowgreen">${cashFormat(_milkProfits)}</span> from selling the fluids they produced`);
V.cashFormat(_milkProfits)
r.push(`</span> from selling the fluids they produced`);
} }
r.push(`this week.`); r.push(`this week.`);
if (V.arcologies[0].FSPaternalist > 20) { if (V.arcologies[0].FSPaternalist > 20) {
repX(forceNeg(Math.trunc(_profits/20)), "arcade"); repX(forceNeg(Math.trunc(_profits / 20)), "arcade");
} }
App.Events.addNode(el, r, "div", "indent");
} }
if (V.arcadeUpgradeFuckdolls === 2) { if (V.arcadeUpgradeFuckdolls === 2) {
_currentSlave = 0, _Age = -1, _FD = -1, _MB = -1, _Con = -1; let _currentSlave, _Age = -1, _FD = -1, _MB = -1, _Con = -1;
<<for _slave range _slaves>> for (const slave of slaves) {
if (_slave.sentence === 0) { if (slave.sentence === 0) { /* let's not convert slaves we are punishing into Fuckdolls */
r.push(` /* let's not convert slaves we are punishing into Fuckdolls */`); if (slave.fetish === "mindbroken") {
if (_slave.fetish === "mindbroken") { if (slave.fuckdoll === 0) {
if (_slave.fuckdoll === 0) { if (slave.physicalAge > 35) {
if (_slave.physicalAge > 35) {
_Age = V.i; _Age = V.i;
<<break>> break;
} else if (_FD === -1) { } else if (_FD === -1) {
_FD = V.i; _FD = V.i;
} }
} else if (_MB === -1) { } else if (_MB === -1) {
if (_slave.vagina >= 4 || _slave.anus >= 4) { if (slave.vagina >= 4 || slave.anus >= 4) {
_Con = V.i; _Con = V.i;
} else if (_slave.physicalAge > 35) { } else if (slave.physicalAge > 35) {
_Age = V.i; _Age = V.i;
} else { } else {
_MB = V.i; _MB = V.i;
} }
} }
} else if (_Con === -1) { } else if (_Con === -1) {
if (_slave.vagina >= 4 || _slave.anus >= 4) { if (slave.vagina >= 4 || slave.anus >= 4) {
_Con = V.i; _Con = V.i;
} else if (_slave.physicalAge > 35) { } else if (slave.physicalAge > 35) {
_Age = V.i; _Age = V.i;
} }
} }
} }
<</for>> }
if (_FD > -1) { if (_FD > -1) {
_currentSlave = V.slaves[_FD]; _currentSlave = V.slaves[_FD];
} else if (_Con > -1) { } else if (_Con > -1) {
...@@ -279,46 +275,41 @@ App.EndWeek.arcadeReport = function() { ...@@ -279,46 +275,41 @@ App.EndWeek.arcadeReport = function() {
} else if (_Age > -1) { } else if (_Age > -1) {
_currentSlave = V.slaves[_Age]; _currentSlave = V.slaves[_Age];
} }
if (_currentSlave !== 0) { if (_currentSlave) {
App.Utils.setLocalPronouns(_currentSlave); const {he} = getPronouns(_currentSlave);
<br>&nbsp;&nbsp;&nbsp;&nbsp;_currentSlave.slaveName is low-quality merchandise, so ${he} has been converted into a Fuckdoll. App.UI.DOM.appendNewElement("div", el, `${_currentSlave.slaveName} is low-quality merchandise, so ${he} has been converted into a Fuckdoll.`, "indent");
r.push(`${V.removeSlave(_currentSlave)}`); removeSlave(_currentSlave);
if (_currentSlave === 0) { if (!_currentSlave) { /* if not zero then technically there was an error INVALID SLAVE */
r.push(` /* if not zero then technically there was an error INVALID SLAVE */`); V.fuckdolls++;
V.fuckdolls++, _SL--; _SL--;
} }
} else { } else {
<br>&nbsp;&nbsp;&nbsp;&nbsp;No slaves have failed quality inspection for Fuckdoll conversion. _arcadeNameCaps will remain overcrowded this week. App.UI.DOM.appendNewElement("div", el, `No slaves have failed quality inspection for Fuckdoll conversion. ${_arcadeNameCaps} will remain overcrowded this week.`, "indent");
} }
} }
if (_DL > 0) { if (_DL > 0) {
<!-- Record statistics gathering --> // Record statistics gathering
<<script>> let b = V.facility.arcade;
r.push(`var b = State.variables.facility.arcade;`); b.whoreIncome = 0;
r.push(`b.whoreIncome = 0;`); b.customers = 0;
r.push(`b.customers = 0;`); b.whoreCosts = 0;
r.push(`b.whoreCosts = 0;`); b.rep = 0;
r.push(`b.rep = 0;`); for (let si of b.income.values()) {
r.push(`for (var si of b.income.values()) {`); b.whoreIncome += si.income;
r.push(`b.whoreIncome += si.income;`); b.customers += si.customers;
r.push(`b.customers += si.customers;`); b.whoreCosts += si.cost;
r.push(`b.whoreCosts += si.cost;`); b.rep += si.rep;
r.push(`b.rep += si.rep;`); }
} b.maintenance = V.arcade * V.facilityCost * (0.05 + 0.02 * V.arcadeUpgradeInjectors + 0.05 * V.arcadeUpgradeCollectors);
r.push(`b.maintenance = State.variables.arcade * State.variables.facilityCost * (0.05 + 0.02 * State.variables.arcadeUpgradeInjectors + 0.05 * State.variables.arcadeUpgradeCollectors);`); b.totalIncome = b.whoreIncome;
r.push(`b.totalIncome = b.whoreIncome;`); b.totalExpenses = b.whoreCosts + b.maintenance;
r.push(`b.totalExpenses = b.whoreCosts + b.maintenance;`); b.profit = b.totalIncome - b.totalExpenses;
r.push(`b.profit = b.totalIncome - b.totalExpenses;`);
<</script>>
<!-- Statistics output --> // Brothel stats
<<includeDOM App.Facilities.Arcade.Stats(false)>> el.append(App.Facilities.Arcade.Stats(false));
<<timed 50ms>> arcadeStats.append(App.Facilities.Arcade.Stats(true));
<<replace #arcade-stats>>
<<includeDOM App.Facilities.Arcade.Stats(true)>>
<</replace>>
<</timed>>
<br><br>
} }
return el;
}; };
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