Page 1 of 1

[fixed]Seht's Tiger protection doesn't work

PostPosted: 26 Mar 2014, 12:09
by BAgate
Describe the Bug:
The protection until end of turn doesn't work.

Which card did behave improperly ?
Seht's Tiger

Which update are you using?(date,name)Which type(Duel,Gauntlet,Sealed Deck)
2014/02/18: Born of the Gods v2 - DUEL

What exactly should be the correct behavior/interaction ?
You should get protection from color of your choice till end of turn.

Are any other cards possibly affected by this bug ?
-

Re: Seht's Tiger

PostPosted: 02 May 2014, 18:54
by Nexhro
bump

Re: Seht's Tiger

PostPosted: 02 May 2014, 18:57
by Korath
Don't do that; it's going to have the opposite of its intended effect.

Re: Seht's Tiger

PostPosted: 02 May 2014, 19:01
by Nexhro
Too late by the time I read that. Those have been sitting there untouched for quite some time, though, and BAgate explicitly asked the other moderators to help kepping the forum clean.
The fact that these had been reported a week ago while newly reported bugs got the label treatment was an indicator, at least to me, for the older ones simply being overlooked because they weren't on the front page.

Anyways, deleted bump posts after I read your response. Was just trying to help, mate.

Re: [confirmed]Seht's Tiger

PostPosted: 03 May 2014, 04:37
by BAgate
Nexhro, good instinct and thanks for the help. But most of the unconfirmed bugs floating a page back were known bugs from back in the day that didn't have posts in our new format, so I created posts when I redid the known bugs section. It would be nice if they got confirmed, but like other bugs, bumping is never needed. The devs are aware, and get annoyed when newer bugs get pushed down. :)

Re: [confirmed]Seht's Tiger

PostPosted: 03 May 2014, 09:29
by Nexhro
Thanks for clearing that up for me - I'll refrain from doing stuff like that.

More importantly, though, it's good to see you back. Hope you're better now!

Re: [confirmed]Seht's Tiger protection doesn't work

PostPosted: 17 Feb 2022, 11:51
by Aswan jaguar
This has been fixed by drool66 in commit 2ce322b. =D>

However if Seht's Tiger is played now on your turn the effect stays also on opponent's turn. That should happen only if Seht's Tiger was cast during it's controller's eot and the same during opponent's eot.

Any particular reason you checked the following in the effect card:
Code: Select all
   if( event == EVENT_BEGIN_TURN && current_turn == player){
      kill_card(player, card, KILL_EXILE);
   }

Re: [confirmed]Seht's Tiger protection doesn't work

PostPosted: 17 Feb 2022, 19:17
by drool66
Any particular reason you checked the following in the effect card
Yes. Fatigue.
Fixed & pushing in a minute
Thanks for digging these bug reports up!

Re: [confirmed]Seht's Tiger protection doesn't work

PostPosted: 20 Feb 2022, 21:37
by drool66
Fixed in 3aae19c

Re: [confirmed]Seht's Tiger protection doesn't work

PostPosted: 22 Feb 2022, 05:29
by Korath
Aswan jaguar wrote:the effect stays also on opponent's turn. That should happen only if Seht's Tiger was cast during it's controller's eot and the same during opponent's eot.
I haven't looked at the implementation or tested it, but this is wrong. "This turn" and "until end of turn" effects always wear off during a cleanup step of the same turn they start; if more state-based or triggered effects happen afterward, typically because of such an effect ending, another cleanup step begins to deal with them, rule 514.2. It's only things that trigger "at the beginning of [your/any/the next/etc] end step" that can get delayed to another turn by happening during an end step.