From 005fdaf8c5ddc200f767077cd3c8b11783fb5334 Mon Sep 17 00:00:00 2001 From: Seatori <92278897+Seatori@users.noreply.github.com> Date: Tue, 7 Jul 2026 21:14:16 -0400 Subject: [PATCH 1/4] Export filler_item_name as a list --- js/exporter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/exporter.js b/js/exporter.js index ddd11bf..babeecf 100644 --- a/js/exporter.js +++ b/js/exporter.js @@ -33,7 +33,7 @@ export class Exporter { "$schema": "https://github.com/ManualForArchipelago/Manual/raw/main/schemas/Manual.game.schema.json", 'game': this.vue.game.replace(/[^A-Za-z0-9]/g, ''), 'creator': this.vue.creator.replace(/[^A-Za-z0-9]/g, ''), - 'filler_item_name': this.vue.filler, + 'filler_item_name': this.vue.filler?.split(',').map((r) => r.trim()) || [], 'starting_items': this.vue.starting_items, }); From d1a6dd4d315b12d8d59be5a4ec91639750e14fbf Mon Sep 17 00:00:00 2001 From: Seatori <92278897+Seatori@users.noreply.github.com> Date: Tue, 7 Jul 2026 21:35:20 -0400 Subject: [PATCH 2/4] Change importing filler_item_name lists to separate the names with spaces --- js/importer.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/js/importer.js b/js/importer.js index 900eba8..95ccecb 100644 --- a/js/importer.js +++ b/js/importer.js @@ -174,7 +174,13 @@ export class Importer { this.vue.creator = this.game.player; } - this.vue.filler = this.game.filler_item_name; + if (typeof this.game.filler_item_name === "string") { + this.vue.filler = this.game.filler_item_name; + } + else { + this.vue.filler = this.game.filler_item_name?.join(', ') || ''; + } + this.vue.starting_items = this.game.starting_items || []; } From 941846c3bf182e30ba501232a3016ebfcb303a64 Mon Sep 17 00:00:00 2001 From: Seatori <92278897+Seatori@users.noreply.github.com> Date: Tue, 7 Jul 2026 21:38:10 -0400 Subject: [PATCH 3/4] Add an example conveying that Filler Name accepts a list of names --- text/examples.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/text/examples.js b/text/examples.js index c069513..2dbdc8c 100644 --- a/text/examples.js +++ b/text/examples.js @@ -1,7 +1,7 @@ export const Examples = { SIDEBAR_GAME: "", SIDEBAR_CREATOR: "your name, probably", - SIDEBAR_FILLER_NAME: "", + SIDEBAR_FILLER_NAME: "Filler 1, Filler 2, etc.", ITEMS_NAME: "", ITEMS_CATEGORIES: "Category 1, Category 2, etc.", From 65065dbc04b1885f49146d289e50b88afd4df5fd Mon Sep 17 00:00:00 2001 From: Seatori <92278897+Seatori@users.noreply.github.com> Date: Wed, 8 Jul 2026 23:35:43 -0400 Subject: [PATCH 4/4] Pluralize Filler Name --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 15f4bf3..92cde72 100644 --- a/index.html +++ b/index.html @@ -54,7 +54,7 @@