Page 1 of 1

Combat_End and Creature.attacking

PostPosted: 01 Nov 2010, 21:02
by slapshot5
I am trying to use an ability with the following targeting at the End_Combat phase:

Code: Select all
final String Tgts[] = {"Creature.attacking"};
Target target = new Target("TgtV", "Select target attacking creature.", Tgts);       
But, it won't let me select an attacking creature. Has the Combat reset code already been called at this point? If so, how do we change it so End_Combat spells can still use Creature.attacking and Creature.blocking?

Thanks,
slapshot5

Re: Combat_End and Creature.attacking

PostPosted: 01 Nov 2010, 21:24
by friarsol
Probably just some leftover code when I was moving things around. Fix is coming up in a few.

Re: Combat_End and Creature.attacking

PostPosted: 01 Nov 2010, 21:29
by slapshot5
friarsol wrote:Probably just some leftover code when I was moving things around. Fix is coming up in a few.
Works like a charm. Thanks!