From 7b58aacc7918cc5a078d2d87d345edc78f6b9363 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Thu, 16 Sep 2021 15:45:24 -0400 Subject: [PATCH] Remove an invisible character from `ProjectUtilities.writeTextFile()` call --- strange_eons_to_arkhamdb.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strange_eons_to_arkhamdb.js b/strange_eons_to_arkhamdb.js index 8183286..ad6f454 100644 --- a/strange_eons_to_arkhamdb.js +++ b/strange_eons_to_arkhamdb.js @@ -281,7 +281,7 @@ cards.sort(function (a, b) { }); const file = new File(Eons.getOpenProject().getFile(), pack_code + '.json'); printf("Writing '%s'\n", file); -ProjectUtilities.writeTextFile​(file, JSON.stringify(cards, null, 4)); +ProjectUtilities.writeTextFile(file, JSON.stringify(cards, null, 4)); println("Done!"); Eons.getOpenProject().synchronize();