Page 448 of 505

Re: [confirmed]Hinder

PostPosted: 11 Jun 2013, 12:46
by Gargaroz
Fixed the "remain into play" part for Hinder.
For the second, seems like a complex issue, test again Followed Footsteps and let me know.

Re: Kederekt Leviathan

PostPosted: 11 Jun 2013, 12:48
by Gargaroz
It's a global "flashback" / "unearth" issue and is already fixed.

Re: Sacellum Godspeaker

PostPosted: 11 Jun 2013, 12:52
by Gargaroz
Code fixed and improved.

Re: [fixed by Gargaroz]Praetor's Counsel

PostPosted: 11 Jun 2013, 15:50
by Sonic
Korath wrote:B) Its legacy card has no text and no title.
Fixed.

[fixed by Gargaroz]Vorinclex, Voice of Hunger

PostPosted: 12 Jun 2013, 00:10
by BAgate
Describe the Bug:
When you have Vorinclex in play and play a land that comes into play tapped you get one mana of a type it coul produce in your mana pool. You also get one mana if a land is tapped by something else (ex. Twiddle).

Which card did behave improperly ?
Vorinclex, Voice of Hunger

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

What exactly should be the correct behavior/interaction ?
You should only get the extra mana when tapping a land for mana.

Are any other cards possibly affected by this bug ?
probably not, Mana Flare for instance works fine.

Re: [fixed by Gargaroz]Hinder

PostPosted: 12 Jun 2013, 00:24
by BAgate
Did some further testing. The error only seems to occur when Hinder is a permanent and the Followed Footsteps is cast on a creature that an opponent has stolen (with a Control Magic in my test). So if the Hinder error is resolved, hopefully this is too.

[already fixed by Gargaroz]Oona, Queen of the Fae

PostPosted: 12 Jun 2013, 06:32
by BAgate
Describe the Bug:
If you have black mana available then you can't use blue mana to start Oona's ability (when you click on Oona it asks for black mana and if you click cancel you don't get an option to use blue, it just cancels it).

Which card did behave improperly ?
Oona, Queen of the Fae

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

What exactly should be the correct behavior/interaction ?
You should be able to use either blue or black mana to start the ability regardless of whether you have black available.

Are any other cards possibly affected by this bug ?
Possibly other cards that use the split mana, but I haven't found any.

[fixed by Gargaroz]Cylian Sunsinger

PostPosted: 12 Jun 2013, 06:49
by stassy
Describe the Bug:
Cylian Sunsinger ability ask for UGR instead of RGW

Which card did behave improperly ?
Cylian Sunsinger

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

What exactly should be the correct behavior/interaction ?
Cylian Sunsinger ability ask for RGW instead of UGR

Are any other cards possibly affected by this bug ?
-

Image

I suppose it's already fixed due to global ability cost fix but just reporting for completeness sake :P

[fixed by Gargaroz]Faerie Mechanist

PostPosted: 12 Jun 2013, 07:01
by stassy
Describe the Bug:
When Faerie Mechanist is cast, game ask to choose one card the 3 1st cards of lib, then shuffle the lib then ask to put the 3 1st cards of the reshuffled lib to its bottom.

Which card did behave improperly ?
Faerie Mechanist

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

What exactly should be the correct behavior/interaction ?
Faerie Mechanist ability should not shuffle lib

Are any other cards possibly affected by this bug ?
Gift of the Gargantuan

Re: [confirmed]Oona, Queen of the Fae

PostPosted: 12 Jun 2013, 08:24
by Korath
charge_mana_hybrid() looks like it'll always charge the first combination of mana that you can pay that it notices. Complete list of cards calling it in PtM and testing results:
Edit: add Architects of Will and Oona, Queen of the Fae's secondary bug

Re: [confirmed]Oona, Queen of the Fae

PostPosted: 12 Jun 2013, 08:52
by Korath
A fix for the colored activation costs only:
Code: Select all
diff --git a/src/cards/shadowmoor.c b/src/cards/shadowmoor.c
index 84b1f90..c2babbe 100644
--- a/src/cards/shadowmoor.c
+++ b/src/cards/shadowmoor.c
@@ -142,9 +142,12 @@ int has_mana_hybrid(int player, int number, int first_color, int second_color, i
 }

 int charge_mana_hybrid(int player, int number, int first_color, int second_color, int colorless){
+    int old_spell_fizzled;
     int i,x;
     int mana[6];

+    old_spell_fizzled = spell_fizzled;
+
     for( x = 0 ;x < 6;x++){
         mana[x] = 0;
     }
@@ -153,6 +156,7 @@ int charge_mana_hybrid(int player, int number, int first_color, int second_color
         mana[first_color] = i;
         mana[second_color] = number - i;
         if( has_mana_multi( player, colorless, mana[1], mana[2], mana[3], mana[4], mana[5]) ){
+            spell_fizzled = old_spell_fizzled;
             charge_mana_multi(  player, colorless, mana[1], mana[2], mana[3], mana[4], mana[5] );
             if( spell_fizzled != 1 ){
                                return 1;

[fixed by GargarozRealm Razer

PostPosted: 12 Jun 2013, 11:23
by stassy
Describe the Bug:
When Realm Razer leave play, game does not return exiled land from all players and instead will put some Air Elemental and Ancestral Recall effect

Which card did behave improperly ?
Realm Razer

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

What exactly should be the correct behavior/interaction ?
When Realm Razer leave play, game does return exiled land from all players tapped

Are any other cards possibly affected by this bug ?
-

Image

A card that exile all lands and pop some creatures plus some card advantage? Talk a bit about overpowered :mrgreen:

[fixed by Gargaroz]Sphinx Sovereign

PostPosted: 12 Jun 2013, 11:43
by stassy
Describe the Bug:
Sphinx Sovereign ability trigger at owner upkeep, and so the tapped condition cannot be meet (since permanent are untapped at upkeep)

Which card did behave improperly ?
Sphinx Sovereign

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

What exactly should be the correct behavior/interaction ?
Sphinx Sovereign ability trigger at owner end step

Are any other cards possibly affected by this bug ?
-

[fixed by Gargaroz]Qasali Ambusher

PostPosted: 12 Jun 2013, 11:50
by stassy
Describe the Bug:
Qasali Ambusher ability cannot be activated even if all the requirements are met (AI creature attacking, player owning a Forest and a Plains)

Which card did behave improperly ?
Qasali Ambusher

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

What exactly should be the correct behavior/interaction ?
Qasali Ambusher ability can be activated if all the requirements are met (AI creature attacking, player owning a Forest and a Plains)

Are any other cards possibly affected by this bug ?
-

Image

[fixed by Gargaroz]Onyx Goblet

PostPosted: 12 Jun 2013, 12:01
by stassy
Describe the Bug:
- Onyx Goblet is highlighted as castable if player has only 1B mana available.
- Onyx Goblet effect can't be activated (tapped) when on the bf.

Which card did behave improperly ?
Onyx Goblet

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

What exactly should be the correct behavior/interaction ?
- Onyx Goblet can only be cast when owner has 2B mana available
- Onyx Goblet effect can be activated (tapped) when on the bf.

Are any other cards possibly affected by this bug ?
-

Image