From 0ff7e54ff466809a8a33f7ff4c2a0326b1d8b976 Mon Sep 17 00:00:00 2001 From: zethfoxster Date: Thu, 7 Jul 2016 20:47:25 -0400 Subject: [PATCH] this is a good enough fix as waste is colorless which is artifact, and all we do is barrow the kbitmask from land. --- projects/mtg/src/CardPrimitive.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/projects/mtg/src/CardPrimitive.cpp b/projects/mtg/src/CardPrimitive.cpp index 0ed61cd68..bddc43ed4 100644 --- a/projects/mtg/src/CardPrimitive.cpp +++ b/projects/mtg/src/CardPrimitive.cpp @@ -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;