From 25b48a95e992af73e49036b3d9cc630396b6be0a Mon Sep 17 00:00:00 2001 From: kayjaydee Date: Fri, 24 Apr 2026 15:34:16 +0200 Subject: [PATCH] fix(04-bugfix): enable IncludesAssetPack=true so plugin asset-pack is registered Without this flag, JavaPlugin.setup0() skips AssetModule.registerPack(), so bundled Items/*.json are never loaded into Item.getAssetMap(), causing /gravityflip wand to fail with 'Item gravityflip_wand introuvable'. --- src/main/resources/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/manifest.json b/src/main/resources/manifest.json index 155dd22..1d499aa 100644 --- a/src/main/resources/manifest.json +++ b/src/main/resources/manifest.json @@ -16,5 +16,5 @@ "Dependencies": {}, "OptionalDependencies": {}, "DisabledByDefault": false, - "IncludesAssetPack": false + "IncludesAssetPack": true }