Fixed uninitialized value

Due to this, activated abilities with {X} in cost sometimes were having X=0 when playing
(This appeared only in Debug mode)
This commit is contained in:
pankdm
2013-09-16 20:18:36 +00:00
parent 4aa5dec51a
commit 8626451977

View File

@@ -480,6 +480,7 @@ void ManaCost::init()
suspend = NULL;
manaUsedToCast = NULL;
isMulti = false;
xColor = -1;
}
void ManaCost::resetCosts()