Commit 2a645b7b authored by twanvl's avatar twanvl

Restored the card sorting for magic: the color component of sort_index was accidentally removed.

parent 5cdd01a7
...@@ -162,9 +162,10 @@ include file: /magic-blends.mse-include/new-blends ...@@ -162,9 +162,10 @@ include file: /magic-blends.mse-include/new-blends
############################################################## Card number ############################################################## Card number
# Index for sorting, white cards are first, so white->A, blue->B, .. , # Index for sorting, white cards are first, so white->A, blue->B, .. ,
# The code consists of 4 parts: # The code consists of 3 parts:
# normal/token, color, shifted, split # color, shifted, split
sort_index := { sort_index := {
color_of_card() +
(if contains(card.shape, match:"shifted") then "S" else " ") + # planeshifted cards come after normal ones (if contains(card.shape, match:"shifted") then "S" else " ") + # planeshifted cards come after normal ones
(if contains(card.shape, match:"split") then "S" else " ") + # split cards come after normal ones (if contains(card.shape, match:"split") then "S" else " ") + # split cards come after normal ones
":" ":"
......
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