From 31b200032104e56f91742017442ee8848a2bd503 Mon Sep 17 00:00:00 2001 From: lowercase-donkey <lowercasedonkey@gmail.com> Date: Sat, 19 Jan 2019 18:27:52 -0500 Subject: [PATCH] Fix comma --- devNotes/twine JS.txt | 2 +- src/js/economyJS.tw | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt index ba55b692835..85873bf8139 100644 --- a/devNotes/twine JS.txt +++ b/devNotes/twine JS.txt @@ -3179,7 +3179,7 @@ window.cashX = function(cost, what, who) { if (typeof V.lastWeeksCashIncome[what] !== 'undefined') { V.lastWeeksCashIncome[what] += cost; } else { - V.lastWeeksErrors += `Unknown place "${what}", gained you ${cost}`; + V.lastWeeksErrors += `Unknown place "${what}" gained you ${cost},`; } //record the slave, if available diff --git a/src/js/economyJS.tw b/src/js/economyJS.tw index 8a91562a86c..b4ee0cec07b 100644 --- a/src/js/economyJS.tw +++ b/src/js/economyJS.tw @@ -983,7 +983,7 @@ window.cashX = function(cost, what, who) { if (typeof V.lastWeeksCashIncome[what] !== 'undefined') { V.lastWeeksCashIncome[what] += cost; } else { - V.lastWeeksErrors += `Unknown place "${what}", gained you ${cost}`; + V.lastWeeksErrors += `Unknown place "${what}" gained you ${cost},`; } //record the slave, if available -- GitLab