Skip to content
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
39 changes: 37 additions & 2 deletions crates/workshop-rs/src/catalog/data/catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -2480,7 +2480,8 @@
"paramDomains": [
null,
null,
"Status"
"Status",
null
],
"paramTypes": [
"Player|Array",
Expand Down Expand Up @@ -2801,6 +2802,10 @@
null,
"Hero"
],
"paramTypes": [
"Player|Array",
"Hero"
],
"params": [
"Player",
"Hero"
Expand All @@ -2812,6 +2817,12 @@
"zh-CN": "停止强制玩家选择英雄"
},
"id": "stopForcingHero",
"paramDomains": [
null
],
"paramTypes": [
"Player|Array"
],
"params": [
"Player"
]
Expand All @@ -2822,6 +2833,24 @@
"zh-CN": "开始限制阈值"
},
"id": "forceThrottle",
"paramDomains": [
null,
null,
null,
null,
null,
null,
null
],
"paramTypes": [
"Player|Array",
"Number|Boolean",
"Number|Boolean",
"Number|Boolean",
"Number|Boolean",
"Number|Boolean",
"Number|Boolean"
],
"params": [
"Player",
"MoveSpeed",
Expand Down Expand Up @@ -3172,6 +3201,12 @@
"zh-CN": "停止追踪全局变量"
},
"id": "stopChasingVariable",
"paramDomains": [
null
],
"paramTypes": [
"Variable"
],
"params": [
"Variable"
]
Expand Down Expand Up @@ -3992,7 +4027,7 @@
]
}
],
"digest": "e3a0c15bd30fd59ec933114bccce5feaeb5c8a77bb34497b185e5a36dab41d34",
"digest": "ba22304296aafc2aa715ea9c47aa8ccf4065576f268af4eb3d9a99d03124f7d6",
"enums": [
{
"domain": "Impulse",
Expand Down
2 changes: 1 addition & 1 deletion crates/workshop-rs/tests/identity.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use workshop_rs::catalog::{Catalog, Locale};
/// (`workshop-catalog-gen build`) recomputes it and the pin is updated
/// deliberately together with the data.
const PINNED_CATALOG_DIGEST: &str =
"e3a0c15bd30fd59ec933114bccce5feaeb5c8a77bb34497b185e5a36dab41d34";
"ba22304296aafc2aa715ea9c47aa8ccf4065576f268af4eb3d9a99d03124f7d6";

#[test]
fn committed_catalog_digest_is_pinned() {
Expand Down
8 changes: 4 additions & 4 deletions docs/language-support/actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ This document inventories all **219 canonical Workshop actions** supported by `w
| `Enable Text Chat` | ✅ Supported | Parameters: (Object: Player|Array). |
| `Enable Voice Chat` | ✅ Supported | Parameters: (Object: Player|Array). |
| `For Player Variable` | ✅ Supported | Parameters: (Player: Player, PlayerVariable: Variable, Number: Number, Number: Number, Number: Number). |
| `Force Player Hero` | ✅ Supported | Parameters: (Player, Hero). |
| `Force Throttle` | ✅ Supported | Parameters: (Player, MoveSpeed, InAirSpeed, SpectatorSpeed, GrappleBoost, JumpPower, MoveSpeed). |
| `Force Player Hero` | ✅ Supported | Parameters: (Player: Player|Array, Hero: Hero). |
| `Force Throttle` | ✅ Supported | Parameters: (Player: Player|Array, MoveSpeed: Number|Boolean, InAirSpeed: Number|Boolean, SpectatorSpeed: Number|Boolean, GrappleBoost: Number|Boolean, JumpPower: Number|Boolean, MoveSpeed: Number|Boolean). |
| `Go To Assemble Heroes` | ✅ Supported | No parameters. |
| `Heal` | ✅ Supported | Parameters: (Object: Player|Array, Player: Player, Number: Number). |
| `Kill` | ✅ Supported | Parameters: (Object: Player|Array, Player: Player). |
Expand Down Expand Up @@ -202,12 +202,12 @@ This document inventories all **219 canonical Workshop actions** supported by `w
| `Stop Camera` | ✅ Supported | Parameters: (Player: Player|Array). |
| `Stop Chasing Global Variable` | ✅ Supported | Parameters: (Variable: Variable). |
| `Stop Chasing Player Variable` | ✅ Supported | Parameters: (Player: Player|Array, PlayerVariable: Variable). |
| `Stop Chasing Variable` | ✅ Supported | Parameters: (Variable). |
| `Stop Chasing Variable` | ✅ Supported | Parameters: (Variable: Variable). |
| `Stop Damage Modification` | ✅ Supported | Parameters: (DamageModificationId: DamageModificationId). |
| `Stop Damage Over Time` | ✅ Supported | Parameters: (DotId: DotId). |
| `Stop Facing` | ✅ Supported | Parameters: (Object: Player|Array). |
| `Stop Forcing Dummy Bot Name` | ✅ Supported | Parameters: (Object: Player|Array). |
| `Stop Forcing Hero` | ✅ Supported | Parameters: (Player). |
| `Stop Forcing Hero` | ✅ Supported | Parameters: (Player: Player|Array). |
| `Stop Forcing Player Outlines` | ✅ Supported | Parameters: (Object: Player|Array, Object: Player|Array). |
| `Stop Forcing Player Position` | ✅ Supported | Parameters: (Object: Player|Array). |
| `Stop Forcing Player To Be Hero` | ✅ Supported | Parameters: (Object: Player|Array). |
Expand Down
Loading