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

Fix comma

parent 1a5891cb
No related branches found
No related tags found
No related merge requests found
...@@ -3179,7 +3179,7 @@ window.cashX = function(cost, what, who) { ...@@ -3179,7 +3179,7 @@ window.cashX = function(cost, what, who) {
if (typeof V.lastWeeksCashIncome[what] !== 'undefined') { if (typeof V.lastWeeksCashIncome[what] !== 'undefined') {
V.lastWeeksCashIncome[what] += cost; V.lastWeeksCashIncome[what] += cost;
} else { } else {
V.lastWeeksErrors += `Unknown place "${what}", gained you ${cost}`; V.lastWeeksErrors += `Unknown place "${what}" gained you ${cost},`;
} }
//record the slave, if available //record the slave, if available
...@@ -983,7 +983,7 @@ window.cashX = function(cost, what, who) { ...@@ -983,7 +983,7 @@ window.cashX = function(cost, what, who) {
if (typeof V.lastWeeksCashIncome[what] !== 'undefined') { if (typeof V.lastWeeksCashIncome[what] !== 'undefined') {
V.lastWeeksCashIncome[what] += cost; V.lastWeeksCashIncome[what] += cost;
} else { } else {
V.lastWeeksErrors += `Unknown place "${what}", gained you ${cost}`; V.lastWeeksErrors += `Unknown place "${what}" gained you ${cost},`;
} }
//record the slave, if available //record the slave, if available
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment