summaryrefslogtreecommitdiff
path: root/docs/schedule_scripting_language.md
diff options
context:
space:
mode:
authorJordan Longstaff <JordanLongstaff@users.noreply.github.com>2026-07-18 15:20:31 -0400
committerGitHub <noreply@github.com>2026-07-18 12:20:31 -0700
commit5fd95d51f9ca06194a88c37362461e661c2e9ab6 (patch)
tree1f8a88559448ca8d9a2cb0369969d6639e11451e /docs/schedule_scripting_language.md
parentae6e93fcf91830ba5e3dd28e7bf1623ee006002e (diff)
Document `EnTest3` (#1881)
* Document `EnTest3` * Add comments for enum-type fields * Add scheduled action index comments Co-authored-by: Copilot <copilot@github.com> * Use enums in comparisons * Rename `sp3C` * Rewrite comments on speak data Co-authored-by: Copilot <copilot@github.com> * Reformat * Missed a text comment * Missed another text comment --------- Co-authored-by: Copilot <copilot@github.com>
Diffstat (limited to 'docs/schedule_scripting_language.md')
-rw-r--r--docs/schedule_scripting_language.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/schedule_scripting_language.md b/docs/schedule_scripting_language.md
index 7c8f4f6cf..d8011ee59 100644
--- a/docs/schedule_scripting_language.md
+++ b/docs/schedule_scripting_language.md
@@ -721,7 +721,7 @@ A `not` must always be followed by a [conditional check command](#conditional-ch
The following two scripts are equivalent:
```c
-if_week_event_reg (WEEKEVENTREG_51_08) {
+if_week_event_reg (WEEKEVENTREG_KAFEI_ENTRUSTED_LINK) {
if_since_time (22, 0) {
return_s (12)
} else {
@@ -733,7 +733,7 @@ if_week_event_reg (WEEKEVENTREG_51_08) {
```
```c
-not if_week_event_reg (WEEKEVENTREG_51_08) {
+not if_week_event_reg (WEEKEVENTREG_KAFEI_ENTRUSTED_LINK) {
return_s (12)
} else {
if_since_time (22, 0) {