Skip to content
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

Add scoreboard-filter to Blitz and Scoring page #137

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/modules/objectives/blitz.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ Blitz maps should include `<respawn auto="true"/>` to prevent players from "hidi
| `<filter>` | Filters when a player loses a life. | [Filter](/docs/modules/mechanics/filters) | `always` |
| `<join-filter>` | Filters when a player can join the match after it has started. | [Filter](/docs/modules/mechanics/filters) | `never` |

##### Blitz Attributes

| Attribute | Description | Value |
|---|---|---|
| `scoreboard-filter` | Determines when the objective should be displayed on the scoreboard.<br />**Note:** This filter is team-scoped, it can filter whether each team should show or not independently. | [Dynamic Filter](/docs/modules/mechanics/filters#dynamic-filters) |

### Examples

```xml
Expand Down
6 changes: 6 additions & 0 deletions docs/modules/objectives/scoring.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ It can also be used to create score boxes that give a player or team a certain a
| `<deaths>` | Points to **deduct** from a team for the **accidental** death of a team member. | <span className="badge badge--primary">Number</span> | 0 |
| `<box>` | A single score box. | [Score Box](#score-boxes) |

##### Score Attributes

| Attribute | Description | Value |
|---|---|---|
| `scoreboard-filter` | Determines when the objective should be displayed on the scoreboard.<br />**Note:** This filter is team-scoped, it can filter whether each team should show or not independently. | [Dynamic Filter](/docs/modules/mechanics/filters#dynamic-filters) |

### Examples

```xml
Expand Down
Loading