mirror of
https://github.com/Investigamer/cardconjurer.git
synced 2025-07-27 05:14:53 -05:00
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'
|
||||
}
|
||||
|
||||
if (mask == 'PT' && letter.length > 1) {
|
||||
if (mask == 'PT') {
|
||||
if (letter.length > 1) {
|
||||
letter = letter[0];
|
||||
} else if (letter = 'C') {
|
||||
letter = 'L';
|
||||
}
|
||||
}
|
||||
|
||||
if (letter == 'V') {
|
||||
|
Reference in New Issue
Block a user