Commit 99a46b79 authored by Uytrewq's avatar Uytrewq Committed by GitHub

fix Card.IsFusionSummonableCard (#528)

parent 9906c04b
......@@ -3312,6 +3312,8 @@ int32 card::is_spsummonable_card() {
int32 card::is_fusion_summonable_card(uint32 summon_type) {
if(!(data.type & TYPE_FUSION))
return FALSE;
if((data.type & TYPE_PENDULUM) && current.location == LOCATION_EXTRA && (current.position & POS_FACEUP))
return FALSE;
summon_type |= SUMMON_TYPE_FUSION;
effect_set eset;
filter_effect(EFFECT_SPSUMMON_CONDITION, &eset);
......
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