Commit e7772999 authored by DailyShana's avatar DailyShana

fix Card.IsSummonableCard

for Brain Control
parent 3b005ef4
......@@ -2788,7 +2788,7 @@ int32 card::check_cost_condition(int32 ecode, int32 playerid, int32 sumtype) {
}
// check if this is a normal summonable card
int32 card::is_summonable_card() {
if(!(data.type & TYPE_MONSTER))
if(!(data.type & TYPE_MONSTER) || (data.type & TYPE_TOKEN))
return FALSE;
return !is_affected_by_effect(EFFECT_UNSUMMONABLE_CARD);
}
......
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