From 565cf11b9ac481e444dd41587ae234cdf121c0cc Mon Sep 17 00:00:00 2001 From: Kyle <41976328+ImKyle4815@users.noreply.github.com> Date: Thu, 16 Sep 2021 12:42:13 -0700 Subject: [PATCH] Update creator-23.js --- js/creator-23.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/creator-23.js b/js/creator-23.js index eb88123b..feb684f7 100644 --- a/js/creator-23.js +++ b/js/creator-23.js @@ -724,7 +724,7 @@ function writeText(textObject, targetContext) { //Preps the text string var splitString = '6GJt7eL8'; var rawText = textObject.text - if (params.get('copyright') != null && textObject.name == 'wizards' && card.margins) { + if (params.get('copyright') != null && (textObject.name == 'wizards' || textObject.name == 'copyright') && card.margins) { rawText = params.get('copyright'); //so people using CC for custom card games without WotC's IP can customize their copyright info } var splitText = rawText.replace(/\n/g, '{line}').replace(/{flavor}/g, '{lns}{bar}{lns}{fixtextalign}{i}').replace(/{/g, splitString + '{').replace(/}/g, '}' + splitString).replace(/ /g, splitString + ' ' + splitString).split(splitString);