Re: [confirmed]Curse of the Cabal + Paradoxe Haze
Well, the code for suspended Curse of the Cabal was a bit buggy, I've improved it, so consider it fixed.
High Quality Resources for Collectible Card Games and Home of the CCGHQ Team
https://www.slightlymagic.net/forum/
https://www.slightlymagic.net/forum/viewtopic.php?f=110&t=4108
or
life. (Ideally, you should have the option of paying either
or
and declining to pay the second color even if it's available, though that's just nitpicking.)diff --git a/src/cards/shadowmoor.c b/src/cards/shadowmoor.c
index a6b6158..84b1f90 100644
--- a/src/cards/shadowmoor.c
+++ b/src/cards/shadowmoor.c
@@ -1214,21 +1214,21 @@ int card_dawnglove_infusion(int player, int card, event_t event){
if( ! played_for_free(player, card) && ! is_token(player, card) ){
if( instance->targets[0].card == COLOR_WHITE && has_mana(player, COLOR_WHITE, 1) ){
charge_mana_multi(player, -1, 0, 0, 0, 0, 1);
- if( spell_fizzled != -1 ){
+ if( spell_fizzled != 1 ){
instance->info_slot = x_value+1;
instance->targets[0].player = 1;
}
}
else if( instance->targets[0].card == COLOR_GREEN && has_mana(player, COLOR_GREEN, 1) ){
charge_mana_multi(player, -1, 0, 0, 1, 0, 0);
- if( spell_fizzled != -1 ){
+ if( spell_fizzled != 1 ){
instance->info_slot = x_value+1;
instance->targets[0].player = 1;
}
}
else{
charge_mana(player, COLOR_COLORLESS, -1);
- if( spell_fizzled != -1 ){
+ if( spell_fizzled != 1 ){
instance->info_slot = x_value;
}
}
.
.diff --git a/src/cards/time_spiral.c b/src/cards/time_spiral.c
index 471cb00..e180fab 100644
--- a/src/cards/time_spiral.c
+++ b/src/cards/time_spiral.c
@@ -4228,7 +4228,7 @@ int card_quest_for_tomorrow(int player, int card, event_t event){
kill_card(player, card, KILL_DESTROY);
}
- return suspend(player, card, event, 2, 0, 0, 1, 0, 0, 0);
+ return suspend(player, card, event, 2, 0, 0, 0, 1, 0, 0);
}
int card_sedge_sliver(int player, int card, event_t event){



