From 4e608b13ae9301214041c74289b13490e26a23d5 Mon Sep 17 00:00:00 2001 From: Doug Hoskisson Date: Sat, 29 Nov 2025 16:18:11 -0800 Subject: [PATCH] Docs: fix name of "Build APWorlds" component (#5703) --- docs/apworld specification.md | 4 ++-- worlds/LauncherComponents.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/apworld specification.md b/docs/apworld specification.md index 7022e0ac3d..8494aecd55 100644 --- a/docs/apworld specification.md +++ b/docs/apworld specification.md @@ -44,9 +44,9 @@ These get automatically added to the `archipelago.json` of an .apworld if it is ["Build apworlds" launcher component](#build-apworlds-launcher-component), which is the correct way to package your `.apworld` as a world developer. Do not write these fields yourself. -### "Build apworlds" Launcher Component +### "Build APWorlds" Launcher Component -In the Archipelago Launcher, there is a "Build apworlds" component that will package all world folders to `.apworld`, +In the Archipelago Launcher, there is a "Build APWorlds" component that will package all world folders to `.apworld`, and add `archipelago.json` manifest files to them. These .apworld files will be output to `build/apworlds` (relative to the Archipelago root directory). The `archipelago.json` file in each .apworld will automatically include the appropriate diff --git a/worlds/LauncherComponents.py b/worlds/LauncherComponents.py index ff4e021d9f..bcc545a964 100644 --- a/worlds/LauncherComponents.py +++ b/worlds/LauncherComponents.py @@ -318,5 +318,5 @@ if not is_frozen(): open_folder(apworlds_folder) - components.append(Component('Build APWorlds', func=_build_apworlds, cli=True, + components.append(Component("Build APWorlds", func=_build_apworlds, cli=True, description="Build APWorlds from loose-file world folders."))