From 03b1bd3b3c2fc08b4a80c5ac2806bc5a9bf76369 Mon Sep 17 00:00:00 2001 From: Josh Birnholz Date: Sat, 4 Feb 2023 15:16:35 -0500 Subject: [PATCH] Remove flavor text bar from Phyrexian auto frame --- 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 4b0af08b..5fdd1a50 100644 --- a/js/creator-23.js +++ b/js/creator-23.js @@ -2295,7 +2295,7 @@ function writeText(textObject, targetContext) { if (rawText.includes('//')) { rawText = rawText.replace(/\/\//g, '{lns}'); } - if (autoFramePack == 'Seventh' || autoFramePack == '8th') { + if (autoFramePack == 'Seventh' || autoFramePack == '8th' || autoFramePack == 'Praetors') { rawText = rawText.replace(/{flavor}/g, '{oldflavor}'); } rawText = rawText.replace(/ - /g, ' — ');