Commit d28ebcc2 authored by pichoro's avatar pichoro

Fixing an error relating to the grey colorless land frame in FPM templates.

parent 9c43dc3c
...@@ -23,7 +23,7 @@ init script: ...@@ -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: ...@@ -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: ...@@ -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: ...@@ -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] }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment