Suggested fix for cright field error in Modern Doublefaced Planeswalker template (#101)
This commit is contained in:
committed by
GitHub
parent
cef559d0c4
commit
8b91073e40
@@ -679,21 +679,13 @@ extra card field:
|
|||||||
type: text
|
type: text
|
||||||
name: cright line
|
name: cright line
|
||||||
save value: true
|
save value: true
|
||||||
script:
|
script: card_number_old_1()
|
||||||
if set.automatic_card_numbers then
|
|
||||||
forward_editor(field: card.copyright, suffix: " " + get_card_number_count(tag:card_number_tags().0) )
|
|
||||||
else
|
|
||||||
forward_editor(field: card.copyright)
|
|
||||||
description: Copyright of this card and cardnumber, the default value can be changed on the 'set info' tab
|
description: Copyright of this card and cardnumber, the default value can be changed on the 'set info' tab
|
||||||
extra card field:
|
extra card field:
|
||||||
type: text
|
type: text
|
||||||
name: cright line 2
|
name: cright line 2
|
||||||
save value: true
|
save value: true
|
||||||
script:
|
script: card_number_old_2()
|
||||||
if set.automatic_card_numbers then
|
|
||||||
forward_editor(field: card.copyright_2, suffix: " " + get_card_number_count(tag:card_number_tags().1) )
|
|
||||||
else
|
|
||||||
forward_editor(field: card.copyright_2)
|
|
||||||
description: Copyright of this card and cardnumber, the default value can be changed on the 'set info' tab
|
description: Copyright of this card and cardnumber, the default value can be changed on the 'set info' tab
|
||||||
extra card style:
|
extra card style:
|
||||||
paintbrush:
|
paintbrush:
|
||||||
|
|||||||
@@ -2863,13 +2863,13 @@ card_number_old_1 := {
|
|||||||
else if auto_copy then
|
else if auto_copy then
|
||||||
combined_editor(
|
combined_editor(
|
||||||
field1: card.auto_copyright,
|
field1: card.auto_copyright,
|
||||||
separator: card.card_number,
|
separator: " " + card.card_number + " ",
|
||||||
field2: card.card_code_text
|
field2: card.card_code_text
|
||||||
)
|
)
|
||||||
else
|
else
|
||||||
combined_editor(
|
combined_editor(
|
||||||
field1: card.copyright,
|
field1: card.copyright,
|
||||||
separator: card.card_number,
|
separator: " " + card.card_number + " ",
|
||||||
field2: card.card_code_text
|
field2: card.card_code_text
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user