Commit c58e2105 authored by twanvl's avatar twanvl

cmc("0") == 0

parent 9a4027d2
...@@ -498,7 +498,7 @@ cmc := {to_number( ...@@ -498,7 +498,7 @@ cmc := {to_number(
for each sym in cmc_split() do ( for each sym in cmc_split() do (
numbers := only_numbers(sym) numbers := only_numbers(sym)
if is_half_mana(sym) then 0.5 if is_half_mana(sym) then 0.5
else if numbers != "" then max(1, to_int(numbers)) else if numbers != "" then to_int(numbers)
else 1 # all other symbols are 1 else 1 # all other symbols are 1
)) ))
} }
......
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