Page 502 of 505

Re: Weird bug using Mark for Death

PostPosted: 31 Jul 2013, 11:51
by Gargaroz
Yup, it's fixed. Also the global code for "block_if_able" was bugged, and it's fixed now.

[fixed by Gargaroz] Terra Eternal

PostPosted: 01 Aug 2013, 07:30
by stassy
Describe the Bug:
Terra Eternal doesn't grant indestructible to all lands

Which card did behave improperly ?
Terra Eternal

Which update are you using?(date,name)Which type(Duel,Gauntlet,Sealed Deck)
OIv2

What exactly should be the correct behavior/interaction ?
Terra Eternal grant indestructible to all lands

Are any other cards possibly affected by this bug ?
-

Image

Tested with Armageddon, Strip Mine and deadly combat damages on animated Celestial Colonnade.

[fixed by Gargaroz]Chains of Mephistopheles

PostPosted: 01 Aug 2013, 07:38
by Aswan jaguar
Describe the Bug:
I am bringing back Chains of Mephistophelis with Gargaroz more experienced and Korath being a master of code riddles maybe now it can be solved.
Chains of Mephistophelis
1- When I draw a 2nd,3nd...card(so Chains of Mephistophelis triggers) AI discards cards.
2- The draw cards when you discard cards from Chains of Mephistophelis ability doesn't work.


Which card did behave improperly ?
Chains of Mephistopheles

Which update are you using?(date,name)Which type(Duel,Gauntlet,Sealed Deck)
ML3-ODYSSEY.V2

What exactly should be the correct behavior/interaction ?
1- When I WOULD DRAW a card beyond the first in draw step I would have to discard a card.
2- Continuing the above when a player discards a card due to Chains of Mephistopheles ability that player has to draw a card.When a player has no more cards to discard then he puts the top card of library for each card drawn beyond the first in draw step.
(side note: if a card makes you draw cards in a step before the normal draw step it still has to trigger)

Are any other cards possibly affected by this bug ?

[fixed by Gargaroz]Echo Mage

PostPosted: 01 Aug 2013, 12:23
by stassy
Describe the Bug:
Echo Mage cannot use his Twincast or double Twincast ability, only level up ability at level 2+/4+

Which card did behave improperly ?
Echo Mage

Which update are you using?(date,name)Which type(Duel,Gauntlet,Sealed Deck)
OIv2

What exactly should be the correct behavior/interaction ?
Echo Mage can use his Twincast or double Twincast ability at level 2+/4+

Are any other cards possibly affected by this bug ?
-

Image

Re: Chains of Mephistopheles

PostPosted: 01 Aug 2013, 12:49
by Korath
The last time I tried using it a couple versions ago, it was making me discard when the AI drew.

[fixed by Gargaroz]Eldrazi + Legend rule

PostPosted: 01 Aug 2013, 12:53
by stassy
Describe the Bug:
- Emrakul, the Aeons Torn is not affected by Legend rule whether hardcasted or Spawnsire of Ulamog casted
- Emrakul, the Aeons Torn and Kozilek, Butcher of Truth are not shuffled into lib when buried.

Which card did behave improperly ?
Eldrazi legend

Which update are you using?(date,name)Which type(Duel,Gauntlet,Sealed Deck)
OIv2

What exactly should be the correct behavior/interaction ?
- Emrakul, the Aeons Torn is affected by Legend rule whether hardcasted or Spawnsire of Ulamog casted
- Emrakul, the Aeons Torn and Kozilek, Butcher of Truth are shuffled into lib when buried.

Are any other cards possibly affected by this bug ?
prolly others legendary eldrazi

Image

Image

Re: Eldrazi + Legend rule

PostPosted: 01 Aug 2013, 13:28
by HarlequinCasts
This sounds familiar. Pretty sure I posted the same thing a while back and it was fixed.

This is all I can find of it in the Fixed Bug Archive.

Had something to do with Emrakul being uncounterable?

Re: Terra Eternal

PostPosted: 01 Aug 2013, 13:53
by Gargaroz
Fixed.

Re: AI activate Nebuchadnezzar crash game

PostPosted: 01 Aug 2013, 14:00
by Gargaroz
Fixed.

Re: Echo Mage

PostPosted: 01 Aug 2013, 14:08
by Gargaroz
Fixed.

Re: Eldrazi + Legend rule

PostPosted: 01 Aug 2013, 14:09
by stassy
Yup, but this was a bug reported and fixed after PDMNv2 so it was supposed to be fixed now :P

Re: Chains of Mephistopheles

PostPosted: 01 Aug 2013, 14:13
by Gargaroz
Fixed & tested.

Re: Eldrazi + Legend rule

PostPosted: 01 Aug 2013, 14:19
by Gargaroz
Well, the Legend rule for Emrakul is fixed, but I couldn't confirm the no-shuffle bug. I tried and in my version the graveyard is shuffled into the library.

Re: Eldrazi + Legend rule

PostPosted: 01 Aug 2013, 23:31
by Korath
Are you cheating the eldrazi into the game with G or H? If I add Emrakul to my hand with H and then discard him at the end of the turn, he stays in the graveyard; but if I make an all-Emrakul deck and discard him, he gets shuffled properly.

[fixed by Gargaroz]Merfolk Sovereign

PostPosted: 02 Aug 2013, 02:11
by Korath
Describe the Bug:
The AI for Merfolk Sovereign crashes when the only other merfolk is summoning sick, tapped, or not controlled by the AI. (And it looks like it will if the only other merfolk has 0 power, too.)

Which card did behave improperly ?
Merfolk Sovereign.

Which update are you using?(date,name)Which type(Duel,Gauntlet,Sealed Deck)
OtIv2, solo duel. First observed in the challenge gauntlet many versions ago (and fixed locally); magict01 seems to be encountering it currently here.

What exactly should be the correct behavior/interaction ?
Well, no crashing, obviously.

Are any other cards possibly affected by this bug ?
Nope.

The problem's that
  1. EVENT_CAN_ACTIVATE and EVENT_ACTIVATE handlers don't exactly match up for the AI, which may also be why the ai will often activate, then cancel, it many many times in a row
  2. if it gets to its EVENT_ACTIVATE handler when it doesn't find a target it likes, it doesn't cancel, so leaves -1/-1 in its targets[0] for EVENT_RESOLVE_ACTIVATION to crash on.
A fix for #2 only:
Code: Select all
diff --git a/src/cards/m11.c b/src/cards/m11.c
index 1581c21..0709a86 100644
--- a/src/cards/m11.c
+++ b/src/cards/m11.c
@@ -2668,6 +2668,7 @@ int card_merfolk_sovereign(int player, int card, event_t event){


             if( stop < 2 ){
+               cancel = 1;
                return 0;
             }
    }