-
Notifications
You must be signed in to change notification settings - Fork 775
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ZONE_CHANGE_GROUP event must be reworked to fix duplicated events #8009
Comments
The Gitrog Monster - (Gatherer) (Scryfall) (EDHREC)
|
this is another thing I was hoping to work on soon once there aren't any new sets coming out for a little while |
It doesn’t use player to group the events anymore. Now it groups on the source ability. Makes no sense to group on the player. |
Also, The Gitrog Monster works fine now. |
Checked the other ZONE_CHANGE_GROUP cards and they work fine as well. |
|
From #7572 (comment)
Group event (
ZONE_CHANGE_GROUP
) introduced long ago for triggers likewhenever one or more cards
(example: [[The Gitrog Monster]]). E.g. you must catch only one event at the end and trigger on it. ~13 cards uses it.Current grouping code splits events by zones/source/player (see
ZoneChangeData
), e.g. it creates multiple group events instead one. It can be potentially buggy for some some use cases.Possible solution: do not split events by multiple groups. Use one group instead. And keep all necessary information (cards/tokens list, map between card and original event).
The text was updated successfully, but these errors were encountered: