|
Post by ellipsis on Jan 27, 2019 22:19:08 GMT
I'm currently making a set that has nonland cards with land frames. I'd like autocount to sort these with their respective colors rather than with the lands. Can I monkey with a file somewhere to make autocount recognize lands as cards with "Land" in their typeline rather than cards with a land frame?
|
|
|
Post by cajun on Jan 28, 2019 3:15:18 GMT
in magic.mse-game/script, find "color_of_card :" a few lines under that is the beginning of the code that sorts lands: else if chosen(choice: "land", card_color) then (
and change it to this else if contains(card.super_type, match: "Land") then (
then things on the land frame without the Land type will sort similarly to Evermind.
|
|
|
Post by ellipsis on Jan 28, 2019 4:23:25 GMT
Many thanks!
|
|