Commit ead52a92 authored by Koishi_Mint's avatar Koishi_Mint Committed by mercury233

fix special_summon_step (#161)

parent c877962a
...@@ -2911,10 +2911,10 @@ int32 field::special_summon_step(uint16 step, group* targets, card* target, uint ...@@ -2911,10 +2911,10 @@ int32 field::special_summon_step(uint16 step, group* targets, card* target, uint
} }
if(target->current.location != LOCATION_EXTRA) { if(target->current.location != LOCATION_EXTRA) {
if(ct2 == 0) if(ct2 == 0)
zone = flag2; zone &= flag2;
} else { } else {
if(ct1 == 0) if(ct1 == 0)
zone = flag1; zone &= flag1;
} }
} }
move_to_field(target, move_player, playerid, LOCATION_MZONE, positions, FALSE, 0, FALSE, zone); move_to_field(target, move_player, playerid, LOCATION_MZONE, positions, FALSE, 0, FALSE, zone);
......
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