moved the triggering of forced lure block to eventblockerschoosen. this corrects issues where lure wasnt applying the abilities like flanking correctly on cards which were forced to block.

This commit is contained in:
omegablast2002@yahoo.com
2013-01-26 16:23:22 +00:00
parent f59b8db91f
commit db0f401ba5

View File

@@ -1501,9 +1501,9 @@ PermanentAbility(observer, _id)
int MTGBlockRule::receiveEvent(WEvent *e)
{
if (WEventCombatStepChange * event = dynamic_cast<WEventCombatStepChange*>(e))
if (WEventBlockersChosen * event = dynamic_cast<WEventBlockersChosen*>(e))
{
if (TRIGGERS == event->step)
if (event)
{
Player * p = game->currentPlayer;
MTGCardInstance * lurer = p->game->inPlay->findALurer();