mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-12 05:36:59 -04:00
Fixing an error relating to the grey colorless land frame in FPM templates.
git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@722 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
@@ -23,7 +23,7 @@ init script:
|
|||||||
}
|
}
|
||||||
template := { green_template() + "{type}.jpg" }
|
template := { green_template() + "{type}.jpg" }
|
||||||
land_template := {
|
land_template := {
|
||||||
(if input == "a" then (
|
(if input == "a" or input == "c" then (
|
||||||
if styling.land_style == "grey" then "e"
|
if styling.land_style == "grey" then "e"
|
||||||
else "c"
|
else "c"
|
||||||
) else green_template()) + "l{type}.jpg" }
|
) else green_template()) + "l{type}.jpg" }
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ init script:
|
|||||||
}
|
}
|
||||||
template := { green_template() + "{type}.jpg" }
|
template := { green_template() + "{type}.jpg" }
|
||||||
land_template := {
|
land_template := {
|
||||||
(if input == "a" then (
|
(if input == "a" or input == "c" then (
|
||||||
if styling.land_style == "grey" then "e"
|
if styling.land_style == "grey" then "e"
|
||||||
else "c"
|
else "c"
|
||||||
) else green_template()) + "l{type}.jpg" }
|
) else green_template()) + "l{type}.jpg" }
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ init script:
|
|||||||
}
|
}
|
||||||
template := { green_template() + "{type}.jpg" }
|
template := { green_template() + "{type}.jpg" }
|
||||||
land_template := {
|
land_template := {
|
||||||
(if input == "a" then (
|
(if input == "a" or input == "c" then (
|
||||||
if styling.land_style == "grey" then "e"
|
if styling.land_style == "grey" then "e"
|
||||||
else "c"
|
else "c"
|
||||||
) else green_template()) + "l{type}.jpg" }
|
) else green_template()) + "l{type}.jpg" }
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ init script:
|
|||||||
template_suffix := [card: "card.jpg", textbox: "textbox.png", typeline: "typeline.png"]
|
template_suffix := [card: "card.jpg", textbox: "textbox.png", typeline: "typeline.png"]
|
||||||
template := { green_template() + template_suffix[type] }
|
template := { green_template() + template_suffix[type] }
|
||||||
land_template := {
|
land_template := {
|
||||||
(if input == "a" then (
|
(if input == "a" or input == "c" then (
|
||||||
if styling.land_style == "grey" then "e"
|
if styling.land_style == "grey" then "e"
|
||||||
else "c"
|
else "c"
|
||||||
) else green_template()) + "l" + template_suffix[type] }
|
) else green_template()) + "l" + template_suffix[type] }
|
||||||
|
|||||||
Reference in New Issue
Block a user