Fix 8th edition colorless P/T autoframe

This commit is contained in:
Josh Birnholz
2022-12-01 13:49:07 -05:00
committed by Josh birnholz
parent 3a312a8e26
commit fee626bc19

View File

@@ -1196,8 +1196,12 @@ function make8thEditionFrameByLetter(letter, mask = false, maskToRightHalf = fal
'ML': 'Multicolored Land' 'ML': 'Multicolored Land'
} }
if (mask == 'PT' && letter.length > 1) { if (mask == 'PT') {
if (letter.length > 1) {
letter = letter[0]; letter = letter[0];
} else if (letter = 'C') {
letter = 'L';
}
} }
if (letter == 'V') { if (letter == 'V') {