From f276cd8fcff1604a0b950800aa7acd4ab288364a Mon Sep 17 00:00:00 2001
From: kopareigns <kopareigns@gmail.com>
Date: Sat, 26 Jan 2019 22:11:40 -0500
Subject: [PATCH] Clearer error messages in cashX

---
 src/js/economyJS.js | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/src/js/economyJS.js b/src/js/economyJS.js
index 39c9cd6e1fb..e02c059bb27 100644
--- a/src/js/economyJS.js
+++ b/src/js/economyJS.js
@@ -1110,8 +1110,14 @@ The third category, the "slave slot" is completely optional.  Sometimes you just
 window.cashX = function(cost, what, who) {
 	const V = State.variables;
 
-	if(isNaN(cost)){
-		V.lastWeeksErrors += `NaN: "${cost}" at ${what},
+	if (typeof cost !== "number") {
+		V.lastWeeksErrors += `"${cost}" at ${what} is not of type "number",
+		`;
+	} else if (Number.isNaN(cost)) {
+		V.lastWeeksErrors += `"${cost}" at ${what} is NaN,
+		`;
+	} else if (cost === -Infinity || cost === Infinity) {
+		V.lastWeeksErrors += `"${cost}" at ${what} is infinity,
 		`;
 	} else {
 		
-- 
GitLab