this is a good enough fix as waste is colorless which is artifact, and all we do is barrow the kbitmask from land.

This commit is contained in:
zethfoxster
2016-07-07 20:47:25 -04:00
parent 61d22eb498
commit 0ff7e54ff4

View File

@@ -426,6 +426,9 @@ uint8_t CardPrimitive::ConvertColorToBitMask(int inColor)
case Constants::MTG_COLOR_LAND:
value = kColorBitMask_Land;
break;
case Constants::MTG_COLOR_WASTE://the true colorless mana shares the kbitmask of land. kbitmask dictates the color of the quad(no image boarder), and the symbol. nothing more.
value = kColorBitMask_Land;
break;
default:
break;