-
Notifications
You must be signed in to change notification settings - Fork 16
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
Document untrigger-filter #140
base: master
Are you sure you want to change the base?
Conversation
@@ -39,6 +39,7 @@ In the future, some features that are currently used in Kits may be transferred | |||
| `id` | Unique identifier used to reference this action from other places in the XML. | <span className="badge badge--primary">String</span> | | |||
| `scope` | Sets the scope target an action should operate against. | `player`, `team`, or `match` | | |||
| `filter` | A filter that is tested before running actions inside. | [Filter](/docs/modules/mechanics/filters) | | |||
| `untrigger-filter` | Filters if an untrigger event (e.g. a trigger filter stops matching) should be passed down to children, similar to [kit lending](/docs/modules/gear/kits#dynamic-kits). | [Filter](/docs/modules/mechanics/filters) | `never` | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this description makes it sound like a totally alien thing. Maybe streamline it with the above filter, so while filter is:
A filter that is tested before running actions inside
this should be:
A filter that is tested before deactivating the actions inside
then follow-up with the note about actions untriggering being a mechanic parallel to that of removable kits & kit lending. Also can mention that most actions don't have explicit untrigger logic and so they do nothing on untrigger
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've implemented your suggestion in the latest commit, let me know if it's good
73ca5e4
to
dc95fc1
Compare
dc95fc1
to
147f8e6
Compare
147f8e6
to
5e342f5
Compare
5e342f5
to
7fd8c33
Compare
7fd8c33
to
192e88e
Compare
Signed-off-by: Pear <[email protected]>
192e88e
to
6c5e79b
Compare
Signed-off-by: Pear <[email protected]>
94d9f6b
to
e5b8c4f
Compare
Resolves #135