Don't display {X0} for {X} mana costs
This commit is contained in:
parent
462e51bfdb
commit
47c6aa0deb
1 changed files with 3 additions and 1 deletions
|
@ -6,8 +6,10 @@
|
|||
{% if cost.y %}<span class="mana symbol">Y</span>{% endif %}
|
||||
{% if cost.z %}<span class="mana symbol">Z</span>{% endif %}
|
||||
{% if cost.any > 0 or cost.converted == 0 %}
|
||||
{% if not cost.x and not cost.y and not cost.z %}
|
||||
<span class="mana symbol">{{ cost.any }}</span>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% for i in cost.snow|get_range %}
|
||||
{# use the unicode snowflake symbol #}
|
||||
<span class="mana symbol">❄</span>
|
||||
|
|
Loading…
Reference in a new issue