From b5fee40406d4fccff95c3415ef862d95ea0be21a Mon Sep 17 00:00:00 2001 From: Calic Date: Sun, 24 May 2026 03:08:31 +0200 Subject: [PATCH] Match module id to directory name convention Other module manifests (spine-prototype, vagrant-skeleton, etc.) use the short directory name as the id, not the long 'sporel-module-X' form which is reserved for the Gitea slug. The mismatch caused the launcher script (which exports SPOREL_MODULE=map-editor) to fail with ENGINE_ERR_MODULE_NOT_FOUND. --- manifest.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.module b/manifest.module index a38c4c1..c70119b 100644 --- a/manifest.module +++ b/manifest.module @@ -1,5 +1,5 @@ { - "id": "sporel-module-map-editor", + "id": "map-editor", "version": "0.1.0", "kind": "module", "api": "^0.1",