forked from GithubMirrors/cardconjurer
Fix 8th edition colorless P/T autoframe
This commit is contained in:

committed by
Josh birnholz

parent
3a312a8e26
commit
fee626bc19
@@ -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') {
|
||||||
letter = letter[0];
|
if (letter.length > 1) {
|
||||||
|
letter = letter[0];
|
||||||
|
} else if (letter = 'C') {
|
||||||
|
letter = 'L';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (letter == 'V') {
|
if (letter == 'V') {
|
||||||
|
Reference in New Issue
Block a user