[Fixed] Bug Archive
Moderators: Aswan jaguar, gmzombie, stassy, BAgate, drool66, CCGHQ Admins
Re: [confirmed]My Undead Horde Awakens
by Gargaroz » 13 Jun 2013, 14:57
Fixed.
----
- Current / medium term task: adjusting the code for making Misdirection and such usable
- Long term task: inserting all the good stuff I left out from the "Golden Years" mod
- Current / medium term task: adjusting the code for making Misdirection and such usable
- Long term task: inserting all the good stuff I left out from the "Golden Years" mod
- Gargaroz
- Programmer
- Posts: 7097
- Joined: 06 Nov 2009, 11:11
- Has thanked: 82 times
- Been thanked: 595 times
Re: Necromancer's Magemark
by Gargaroz » 13 Jun 2013, 15:05
Fixed.
----
- Current / medium term task: adjusting the code for making Misdirection and such usable
- Long term task: inserting all the good stuff I left out from the "Golden Years" mod
- Current / medium term task: adjusting the code for making Misdirection and such usable
- Long term task: inserting all the good stuff I left out from the "Golden Years" mod
- Gargaroz
- Programmer
- Posts: 7097
- Joined: 06 Nov 2009, 11:11
- Has thanked: 82 times
- Been thanked: 595 times
Re: [confirmed]My Wish Is Your Command
by Gargaroz » 13 Jun 2013, 15:10
Fixed.
----
- Current / medium term task: adjusting the code for making Misdirection and such usable
- Long term task: inserting all the good stuff I left out from the "Golden Years" mod
- Current / medium term task: adjusting the code for making Misdirection and such usable
- Long term task: inserting all the good stuff I left out from the "Golden Years" mod
- Gargaroz
- Programmer
- Posts: 7097
- Joined: 06 Nov 2009, 11:11
- Has thanked: 82 times
- Been thanked: 595 times
Re: [fixed by Gargaroz]Knighthood
by Gargaroz » 13 Jun 2013, 23:52
No, it should be fixed for all.
----
- Current / medium term task: adjusting the code for making Misdirection and such usable
- Long term task: inserting all the good stuff I left out from the "Golden Years" mod
- Current / medium term task: adjusting the code for making Misdirection and such usable
- Long term task: inserting all the good stuff I left out from the "Golden Years" mod
- Gargaroz
- Programmer
- Posts: 7097
- Joined: 06 Nov 2009, 11:11
- Has thanked: 82 times
- Been thanked: 595 times
[fixed by Gargaroz]Urborg, Tomb of Yawgmoth
by Korath » 14 Jun 2013, 13:49
Describe the Bug:
I control a Mountain and Urborg, Tomb of Yawgmoth. I activate urborg and target itself; it taps and produces
. I then activate urborg and target the mountain; the mountain taps and produces
, but urborg untaps.
Which card did behave improperly ?
Urborg, Tomb of Yawgmoth.
Which update are you using?(date,name)Which type(Duel,Gauntlet,Sealed Deck)
Planeswalking to Modern 05182013.rar on top of CirothUngol. Solo duel/none.
What exactly should be the correct behavior/interaction ?
Urborg, Tomb of Yawgmoth should neither tap nor untap itself when activating to tap another land for
.
Are any other cards possibly affected by this bug ?
No.
I control a Mountain and Urborg, Tomb of Yawgmoth. I activate urborg and target itself; it taps and produces
. I then activate urborg and target the mountain; the mountain taps and produces
, but urborg untaps.Which card did behave improperly ?
Urborg, Tomb of Yawgmoth.
Which update are you using?(date,name)Which type(Duel,Gauntlet,Sealed Deck)
Planeswalking to Modern 05182013.rar on top of CirothUngol. Solo duel/none.
What exactly should be the correct behavior/interaction ?
Urborg, Tomb of Yawgmoth should neither tap nor untap itself when activating to tap another land for
.Are any other cards possibly affected by this bug ?
No.
- Code: Select all
diff --git a/src/cards/planar_chaos.c b/src/cards/planar_chaos.c
index 18c6f91..8a1c531 100644
--- a/src/cards/planar_chaos.c
+++ b/src/cards/planar_chaos.c
@@ -2833,10 +2833,12 @@ int card_urborg_tomb_of_yawgmoth(int player, int card, event_t event){
if(event == EVENT_ACTIVATE ){
if( pick_target(&td, "TARGET_LAND") ){
+ int was_tapped;
tap_card(instance->targets[0].player, instance->targets[0].card);
instance->number_of_targets = 1;
+ was_tapped = instance->state & STATE_TAPPED;
mana_producer(player, card, event);
- if( ! (instance->targets[0].player == player && instance->targets[0].card == card) ){
+ if( !was_tapped ){
untap_card(player, card);
}
}
- Attachments
-
urborg_tomb_of_yawgmoth.zip- (1.48 KiB) Downloaded 398 times
Last edited by stassy on 15 Jun 2013, 05:48, edited 2 times in total.
Reason: bug fixed
Reason: bug fixed
-

Korath - DEVELOPER
- Posts: 3708
- Joined: 02 Jun 2013, 05:57
- Has thanked: 496 times
- Been thanked: 1108 times
[fixed by Gargaroz]Sowing Salt
by Aswan jaguar » 14 Jun 2013, 15:01
Describe the Bug:
Sowing Salt targets a non-basic land and nothing happens,it stays on hand.
Which card did behave improperly ?
Sowing Salt
Which update are you using?(date,name)Which type(Duel,Gauntlet,Sealed Deck)
ML3-MAY\2013
What exactly should be the correct behavior/interaction ?
Are any other cards possibly affected by this bug ?
Sowing Salt targets a non-basic land and nothing happens,it stays on hand.
Which card did behave improperly ?
Sowing Salt
Which update are you using?(date,name)Which type(Duel,Gauntlet,Sealed Deck)
ML3-MAY\2013
What exactly should be the correct behavior/interaction ?
Are any other cards possibly affected by this bug ?
- Attachments
-
SOWING SALT.rar- the card is debugged in hand,so cheat red mana to cast it
- (1.9 KiB) Downloaded 332 times
Last edited by stassy on 15 Jun 2013, 18:50, edited 4 times in total.
Reason: bug fixed
Reason: bug fixed
---
Trying to squash some bugs and playtesting.
Trying to squash some bugs and playtesting.
-

Aswan jaguar - Super Tester Elite
- Posts: 8144
- Joined: 13 May 2010, 12:17
- Has thanked: 751 times
- Been thanked: 486 times
[fixed by Korath]Spreading Seas
by Korath » 14 Jun 2013, 15:26
Describe the Bug:
Spreading Seas makes its enchanted land into a swamp.
Which card did behave improperly ?
Spreading Seas.
Which update are you using?(date,name)Which type(Duel,Gauntlet,Sealed Deck)
Planeswalking to Modern 05182013.rar on top of CirothUngol. Solo duel/none.
What exactly should be the correct behavior/interaction ?
The enchanted land should be an island.
Are any other cards possibly affected by this bug ?
No. Evil Presence and Contaminated Ground work properly, and other similar cards (Lingering Mirage and Sea's Claim) aren't coded.
Spreading Seas makes its enchanted land into a swamp.
Which card did behave improperly ?
Spreading Seas.
Which update are you using?(date,name)Which type(Duel,Gauntlet,Sealed Deck)
Planeswalking to Modern 05182013.rar on top of CirothUngol. Solo duel/none.
What exactly should be the correct behavior/interaction ?
The enchanted land should be an island.
Are any other cards possibly affected by this bug ?
No. Evil Presence and Contaminated Ground work properly, and other similar cards (Lingering Mirage and Sea's Claim) aren't coded.
- Code: Select all
diff --git a/src/cards/zendikar.c b/src/cards/zendikar.c
index 181d256..b5fae9a 100644
--- a/src/cards/zendikar.c
+++ b/src/cards/zendikar.c
@@ -4723,6 +4723,14 @@ int card_spreading_seas(int player, int card, event_t event){
instance->info_slot = COLOR_BLUE;
draw_a_card(player);
}
+
+ if( event == EVENT_CHANGE_TYPE ){
+ if (affect_me(instance->targets[0].player, instance->targets[0].card)){
+ event_result = get_hacked_color(player, card, 2) - 1;
+ }
+ return 0;
+ }
+
return card_evil_presence(player, card, event);
}
- Attachments
-
spreading_seas.zip- (1.74 KiB) Downloaded 342 times
Last edited by stassy on 15 Jun 2013, 05:51, edited 3 times in total.
Reason: bug fixed
Reason: bug fixed
-

Korath - DEVELOPER
- Posts: 3708
- Joined: 02 Jun 2013, 05:57
- Has thanked: 496 times
- Been thanked: 1108 times
[fixed by Gargaroz]Cloudpost
by Korath » 14 Jun 2013, 15:54
Describe the Bug:
Cloudpostdoesn't tap when activated, and only adds
for each Locus you control.
Which card did behave improperly ?
Cloudpost.
Which update are you using?(date,name)Which type(Duel,Gauntlet,Sealed Deck)
Planeswalking to Modern 05182013.rar on top of CirothUngol. Solo duel/none.
What exactly should be the correct behavior/interaction ?
Itshould tap, and should add
for each Locus on the battlefield (including the other player's).
Are any other cards possibly affected by this bug ?
No. Glimmerpost correctly counts the number of Locuses.
Cloudpost
for each Locus you control.Which card did behave improperly ?
Cloudpost.
Which update are you using?(date,name)Which type(Duel,Gauntlet,Sealed Deck)
Planeswalking to Modern 05182013.rar on top of CirothUngol. Solo duel/none.
What exactly should be the correct behavior/interaction ?
It
for each Locus on the battlefield (including the other player's).Are any other cards possibly affected by this bug ?
No. Glimmerpost correctly counts the number of Locuses.
- Code: Select all
diff --git a/src/cards/lands.c b/src/cards/lands.c
index bed9124..acada6e 100644
--- a/src/cards/lands.c
+++ b/src/cards/lands.c
@@ -436,13 +436,14 @@ int card_cloudpost(int player, int card, event_t event){
comes_into_play_tapped(player, card, event);
if( event == EVENT_COUNT_MANA && !(is_tapped(player, card)) && affect_me(player, card) ){
- declare_mana_available(player, COLOR_COLORLESS, count_subtype(player, TYPE_LAND, SUBTYPE_LOCUS) );
+ declare_mana_available(player, COLOR_COLORLESS, count_subtype(2, TYPE_LAND, SUBTYPE_LOCUS) );
}
else if(event == EVENT_CAN_ACTIVATE && !(is_tapped(player, card)) ){
return 1;
}
else if( event == EVENT_ACTIVATE){
+ tap_card(player, card);
- produce_mana(player, COLOR_COLORLESS, count_subtype(player, TYPE_LAND, SUBTYPE_LOCUS));
+ produce_mana(player, COLOR_COLORLESS, count_subtype(2, TYPE_LAND, SUBTYPE_LOCUS));
}
return 0;
- Attachments
-
cloudpost.zip- (1.87 KiB) Downloaded 339 times
Last edited by stassy on 15 Jun 2013, 05:50, edited 4 times in total.
Reason: bug fixed
Reason: bug fixed
-

Korath - DEVELOPER
- Posts: 3708
- Joined: 02 Jun 2013, 05:57
- Has thanked: 496 times
- Been thanked: 1108 times
Re: Spreading Seas
by Aswan jaguar » 14 Jun 2013, 15:57
Thanks,this bug was a pain in the ass for years thanks for fixing it.I imagine you tested the fix,right? 

---
Trying to squash some bugs and playtesting.
Trying to squash some bugs and playtesting.
-

Aswan jaguar - Super Tester Elite
- Posts: 8144
- Joined: 13 May 2010, 12:17
- Has thanked: 751 times
- Been thanked: 486 times
Re: Sowing Salt
by Korath » 14 Jun 2013, 16:01
If actually only works on basic lands, though it can't be cast unless there's a nonbasic land in play.
- Code: Select all
diff --git a/src/cards/urza_destiny.c b/src/cards/urza_destiny.c
index 7f5b1f3..44f7f74 100644
--- a/src/cards/urza_destiny.c
+++ b/src/cards/urza_destiny.c
@@ -2229,7 +2229,7 @@ int card_sowing_salt(int player, int card, event_t event){
else if( event == EVENT_CAST_SPELL && affect_me(player, card) ){
if( pick_target(&td, "TARGET_LAND") ){
instance->number_of_targets = 1;
- if( ! is_basic_land(instance->targets[0].player, instance->targets[0].card) ){
+ if( is_basic_land(instance->targets[0].player, instance->targets[0].card) ){
spell_fizzled = 1;
}
}
-

Korath - DEVELOPER
- Posts: 3708
- Joined: 02 Jun 2013, 05:57
- Has thanked: 496 times
- Been thanked: 1108 times
Re: [already reported-fixed]Cloudpost
by Korath » 14 Jun 2013, 17:44
Ack, sorry - I did search, and somehow overlooked that.
The other half, that it doesn't count the opponent's Locuses, wasn't reported there, though.
The other half, that it doesn't count the opponent's Locuses, wasn't reported there, though.
-

Korath - DEVELOPER
- Posts: 3708
- Joined: 02 Jun 2013, 05:57
- Has thanked: 496 times
- Been thanked: 1108 times
[fixed by Gargaroz]Mindlock Orb
by stassy » 14 Jun 2013, 18:05
Describe the Bug:
Mindlock Orb is highlighted as castable even if the mana requirement is not met
Which card did behave improperly ?
Mindlock Orb
Which update are you using?(date,name)Which type(Duel,Gauntlet,Sealed Deck)
PM
What exactly should be the correct behavior/interaction ?
Mindlock Orb is not highlighted as castable if the mana requirement is not met
Are any other cards possibly affected by this bug ?
-

Mindlock Orb is highlighted as castable even if the mana requirement is not met
Which card did behave improperly ?
Mindlock Orb
Which update are you using?(date,name)Which type(Duel,Gauntlet,Sealed Deck)
PM
What exactly should be the correct behavior/interaction ?
Mindlock Orb is not highlighted as castable if the mana requirement is not met
Are any other cards possibly affected by this bug ?
-

Last edited by stassy on 15 Jun 2013, 05:49, edited 1 time in total.
Reason: bug fixed
Reason: bug fixed
- stassy
- Moderator
- Posts: 5274
- Joined: 25 Feb 2009, 07:06
- Has thanked: 471 times
- Been thanked: 337 times
Who is online
Users browsing this forum: No registered users and 42 guests